summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2015-02-06 09:42:57 -0800
committerAaron Turon <aturon@mozilla.com>2015-02-13 23:21:08 -0800
commit4175f1ce2fa57ca466e94aa59de9b9383f3c05a4 (patch)
treef3eef73ff8e35621235406397244f6ad4e287782 /src/libstd/lib.rs
parent39b463f15328f448c13fa990f9fc8897e0af55c2 (diff)
downloadrust-4175f1ce2fa57ca466e94aa59de9b9383f3c05a4.tar.gz
rust-4175f1ce2fa57ca466e94aa59de9b9383f3c05a4.zip
Add std::process
Per [RFC 579](https://github.com/rust-lang/rfcs/pull/579), this commit
adds a new `std::process` module. This module is largely based on the
existing `std::old_io::process` module, but refactors the API to use
`OsStr` and other new standards set out by IO reform.

The existing module is not yet deprecated, to allow for the new API to
get a bit of testing before a mass migration to it.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 83f0b7bc0e9..e6ca1bfdb81 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -258,6 +258,7 @@ pub mod os;
 pub mod env;
 pub mod path;
 pub mod old_path;
+pub mod process;
 pub mod rand;
 pub mod time;