]> git.proxmox.com Git - rustc.git/blobdiff - src/librustc_data_structures/lib.rs
Imported Upstream version 1.7.0+dfsg1
[rustc.git] / src / librustc_data_structures / lib.rs
index 39b3842791fa636cd85d27ac0cf7e8d6320a73d7..b4a46f7d08458ed892852bd6d99d9cde3c616ef3 100644 (file)
 //!
 //! This API is completely unstable and subject to change.
 
-// Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
-#![cfg_attr(stage0, feature(custom_attribute))]
 #![crate_name = "rustc_data_structures"]
 #![unstable(feature = "rustc_private", issue = "27812")]
 #![crate_type = "dylib"]
 #![crate_type = "rlib"]
-#![cfg_attr(stage0, staged_api)]
 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
       html_favicon_url = "https://www.rust-lang.org/favicon.ico",
       html_root_url = "https://doc.rust-lang.org/nightly/")]
 
 #![feature(rustc_private, staged_api)]
-#![feature(hashmap_hasher)]
 
 #![cfg_attr(test, feature(test))]
 
@@ -42,6 +38,8 @@ pub mod snapshot_vec;
 pub mod transitive_relation;
 pub mod unify;
 pub mod fnv;
+pub mod tuple_slice;
+pub mod veccell;
 
 // See comments in src/librustc/lib.rs
 #[doc(hidden)]