diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-17 11:05:44 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-02-17 14:02:45 -0800 |
| commit | a2ebb24ee6cc76791ef834cb2d17ecac95756499 (patch) | |
| tree | e5d36b629fd385fde548cd621245cd9b03abdf3c /src/libterm | |
| parent | f1bb6c2f46f08c1d7b6d695f5b3cf93142cb8860 (diff) | |
| download | rust-a2ebb24ee6cc76791ef834cb2d17ecac95756499.tar.gz rust-a2ebb24ee6cc76791ef834cb2d17ecac95756499.zip | |
std: Rename io/path features with old_ prefix
This commit renames the features for the `std::old_io` and `std::old_path` modules to `old_io` and `old_path` to help facilitate migration to the new APIs. This is a breaking change as crates which mention the old feature names now need to be renamed to use the new feature names. [breaking-change]
Diffstat (limited to 'src/libterm')
| -rw-r--r-- | src/libterm/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index c4b3d2813af..81534dbe4c4 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -54,8 +54,8 @@ #![feature(box_syntax)] #![feature(collections)] #![feature(int_uint)] -#![feature(io)] -#![feature(path)] +#![feature(old_io)] +#![feature(old_path)] #![feature(rustc_private)] #![feature(staged_api)] #![feature(std_misc)] |
