]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_data_structures/lib.rs
rustdoc: Added issue_tracker_base_url annotations to crates
[rust.git] / src / librustc_data_structures / lib.rs
index 5f2f430df5039367b3eddbf0659dcf85cc61dcd5..babb81f8bd6da048badde550cec4408f3011e090 100644 (file)
 // 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")]
+#![unstable(feature = "rustc_private", issue = "27812")]
 #![crate_type = "dylib"]
 #![crate_type = "rlib"]
-#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
-      html_favicon_url = "http://www.rust-lang.org/favicon.ico",
-      html_root_url = "http://doc.rust-lang.org/nightly/")]
+#![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/",
+      issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
 
-#![feature(rustc_private)]
-#![feature(test)]
+#![feature(rustc_private, staged_api)]
+#![cfg_attr(test, feature(test))]
 
 #[macro_use] extern crate log;
 extern crate serialize as rustc_serialize; // used by deriving
 
 pub mod snapshot_vec;
+pub mod graph;
+pub mod bitvec;
+pub mod ivar;
+pub mod unify;
+
+// See comments in src/librustc/lib.rs
+#[doc(hidden)]
+pub fn __noop_fix_for_27438() {}