diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-05 10:41:42 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-05 10:41:42 -0800 |
| commit | 7ed418c3b4ede0364bf419b2c12b27f89b706dcf (patch) | |
| tree | a7d0ab09a3c17fc6e987312293c3ffb2a0e2c469 /src/libstd/old_io/process.rs | |
| parent | 68740b405404a3f885e388c8d31722797d519c30 (diff) | |
| download | rust-7ed418c3b4ede0364bf419b2c12b27f89b706dcf.tar.gz rust-7ed418c3b4ede0364bf419b2c12b27f89b706dcf.zip | |
std: Deprecate the old_io::process module
This module is now superseded by the `std::process` module. This module still has some room to expand to get quite back up to parity with the `old_io` version, and there is a [tracking issue][issue] for feature requests as well as known room for expansion. [issue]: https://github.com/rust-lang/rfcs/issues/941 [breaking-change]
Diffstat (limited to 'src/libstd/old_io/process.rs')
| -rw-r--r-- | src/libstd/old_io/process.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/old_io/process.rs b/src/libstd/old_io/process.rs index a13295b1ccb..e02e863516a 100644 --- a/src/libstd/old_io/process.rs +++ b/src/libstd/old_io/process.rs @@ -11,6 +11,9 @@ //! Bindings for executing child processes #![allow(non_upper_case_globals)] +#![unstable(feature = "old_io")] +#![deprecated(since = "1.0.0", + reason = "replaced with the std::process module")] pub use self::StdioContainer::*; pub use self::ProcessExit::*; |
