From 4ef9e1eca277f550cc08ca09a56dfc5240f7635c Mon Sep 17 00:00:00 2001 From: Aaron Turon Date: Wed, 17 Sep 2014 11:55:07 -0700 Subject: [PATCH] Remove unstable marker from std::rt The `std::rt` module was marked `unstable` [a while back](https://github.com/rust-lang/rust/commit/b6d4d117f4c2770649c7ddc2ad9ad4ce4c3b13b1), and this change was not reverted when we moved to an `experimental` baseline for `std`. --- src/libstd/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 08255ba0cb2f4..23643542c4f01 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -263,7 +263,6 @@ pub mod fmt; // FIXME #7809: This shouldn't be pub, and it should be reexported under 'unstable' // but name resolution doesn't work without it being pub. -#[unstable] pub mod rt; mod failure;