about summary refs log tree commit diff
path: root/src/libstd/old_path
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-17 11:05:44 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-17 14:02:45 -0800
commita2ebb24ee6cc76791ef834cb2d17ecac95756499 (patch)
treee5d36b629fd385fde548cd621245cd9b03abdf3c /src/libstd/old_path
parentf1bb6c2f46f08c1d7b6d695f5b3cf93142cb8860 (diff)
downloadrust-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/libstd/old_path')
-rw-r--r--src/libstd/old_path/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/old_path/mod.rs b/src/libstd/old_path/mod.rs
index 17cfe1c8297..37de2993c4d 100644
--- a/src/libstd/old_path/mod.rs
+++ b/src/libstd/old_path/mod.rs
@@ -59,7 +59,7 @@
 //! println!("path exists: {}", path.exists());
 //! ```
 
-#![unstable(feature = "path")]
+#![unstable(feature = "old_path")]
 
 use core::marker::Sized;
 use ffi::CString;