diff options
| author | csmoe <csmoe@msn.com> | 2019-09-26 05:30:10 +0000 |
|---|---|---|
| committer | csmoe <csmoe@msn.com> | 2019-09-29 16:11:30 +0000 |
| commit | d20183dbbff4b59da48aedf28e1eb38f55681b58 (patch) | |
| tree | cb6b2f8a50e43b2f73b8c3243376850c0c0398bb /src/libsyntax | |
| parent | 17990637b3e4e17fd5fcd3a94bf03963c38b5753 (diff) | |
| download | rust-d20183dbbff4b59da48aedf28e1eb38f55681b58.tar.gz rust-d20183dbbff4b59da48aedf28e1eb38f55681b58.zip | |
remove bit_set re-export from rustc_data_structures
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/Cargo.toml | 1 | ||||
| -rw-r--r-- | src/libsyntax/lib.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/Cargo.toml b/src/libsyntax/Cargo.toml index 196cf4d9dfa..d8de21cc677 100644 --- a/src/libsyntax/Cargo.toml +++ b/src/libsyntax/Cargo.toml @@ -18,6 +18,7 @@ lazy_static = "1.0.0" syntax_pos = { path = "../libsyntax_pos" } errors = { path = "../librustc_errors", package = "rustc_errors" } rustc_data_structures = { path = "../librustc_data_structures" } +rustc_index = { path = "../librustc_index" } rustc_lexer = { path = "../librustc_lexer" } rustc_target = { path = "../librustc_target" } smallvec = { version = "0.6.7", features = ["union", "may_dangle"] } diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 2c10220c766..d2c76b669dd 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -26,7 +26,7 @@ extern crate proc_macro; pub use errors; use rustc_data_structures::sync::Lock; -use rustc_data_structures::bit_set::GrowableBitSet; +use rustc_index::bit_set::GrowableBitSet; pub use rustc_data_structures::thin_vec::ThinVec; use ast::AttrId; use syntax_pos::edition::Edition; |
