mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-04 02:54:00 +00:00
move bit_set into rustc_index
This commit is contained in:
parent
1cff2e6557
commit
17990637b3
@ -3469,6 +3469,7 @@ name = "rustc_index"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"serialize",
|
||||
"smallvec",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -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;
|
||||
|
@ -11,3 +11,4 @@ doctest = false
|
||||
|
||||
[dependencies]
|
||||
rustc_serialize = { path = "../libserialize", package = "serialize" }
|
||||
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|
||||
|
@ -3,3 +3,4 @@
|
||||
#![feature(fn_traits)]
|
||||
|
||||
pub mod indexed_vec;
|
||||
pub mod bit_set;
|
||||
|
Loading…
Reference in New Issue
Block a user