move bit_set into rustc_index

This commit is contained in:
csmoe 2019-09-26 03:26:16 +00:00
parent 1cff2e6557
commit 17990637b3
6 changed files with 4 additions and 2 deletions

View File

@ -3469,6 +3469,7 @@ name = "rustc_index"
version = "0.0.0"
dependencies = [
"serialize",
"smallvec",
]
[[package]]

View File

@ -37,7 +37,7 @@ extern crate libc;
extern crate cfg_if;
pub use rustc_serialize::hex::ToHex;
pub use rustc_index::{indexed_vec, newtype_index};
pub use rustc_index::{bit_set, indexed_vec, newtype_index};
#[inline(never)]
#[cold]
@ -69,7 +69,6 @@ pub mod macros;
pub mod svh;
pub mod base_n;
pub mod binary_search_util;
pub mod bit_set;
pub mod box_region;
pub mod const_cstr;
pub mod flock;

View File

@ -11,3 +11,4 @@ doctest = false
[dependencies]
rustc_serialize = { path = "../libserialize", package = "serialize" }
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

View File

@ -3,3 +3,4 @@
#![feature(fn_traits)]
pub mod indexed_vec;
pub mod bit_set;