diff options
Diffstat (limited to 'src/libstd/std.rs')
| -rw-r--r-- | src/libstd/std.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs index 3a96cfb1171..df6c47a8492 100644 --- a/src/libstd/std.rs +++ b/src/libstd/std.rs @@ -184,6 +184,8 @@ pub mod os; pub mod path; pub mod rand; pub mod run; +// NOTE: Remove module after next snapshot +#[cfg(stage0)] pub mod sys; pub mod cast; pub mod fmt; @@ -226,7 +228,10 @@ mod std { pub use logging; pub use option; pub use os; + pub use rt; pub use str; + // NOTE: Remove import after next snapshot + #[cfg(stage0)] pub use sys; pub use to_bytes; pub use to_str; |
