Make most of std::rt private
Previously, the entire runtime API surface was publicly exposed, but that is neither necessary nor desirable. This commit hides most of the module, using librustrt directly as needed. The arrangement will need to be revisited when rustrt is pulled into std. [breaking-change]
This commit is contained in:
@@ -18,7 +18,7 @@ use kinds::Send;
|
||||
use option::{Some, None};
|
||||
use result::Ok;
|
||||
use rt::backtrace;
|
||||
use rt::{Stderr, Stdio};
|
||||
use rustrt::{Stderr, Stdio};
|
||||
use rustrt::local::Local;
|
||||
use rustrt::task::Task;
|
||||
use str::Str;
|
||||
|
||||
Reference in New Issue
Block a user