summary refs log tree commit diff
path: root/src/libstd/ffi
diff options
context:
space:
mode:
authorGeorge Burton <burtonageo@gmail.com>2018-05-09 07:23:02 +0100
committerGeorge Burton <burtonageo@gmail.com>2018-05-09 07:23:02 +0100
commit17e262880c13abdc4d7bf72eb7e87146f0f3b1f0 (patch)
tree2f4f3028c97d1b7458df36f54b3cda328e352f82 /src/libstd/ffi
parentf3e858aae761b30a56e8b03f510f360edeb3a2f1 (diff)
downloadrust-17e262880c13abdc4d7bf72eb7e87146f0f3b1f0.tar.gz
rust-17e262880c13abdc4d7bf72eb7e87146f0f3b1f0.zip
Update features to 1.28.0
Diffstat (limited to 'src/libstd/ffi')
-rw-r--r--src/libstd/ffi/c_str.rs8
-rw-r--r--src/libstd/ffi/os_str.rs8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/libstd/ffi/c_str.rs b/src/libstd/ffi/c_str.rs
index 10f59b0a3cc..05ab4c3cecc 100644
--- a/src/libstd/ffi/c_str.rs
+++ b/src/libstd/ffi/c_str.rs
@@ -682,7 +682,7 @@ impl Borrow<CStr> for CString {
     fn borrow(&self) -> &CStr { self }
 }
 
-#[stable(feature = "cstring_from_cow_cstr", since = "1.27.0")]
+#[stable(feature = "cstring_from_cow_cstr", since = "1.2780")]
 impl<'a> From<Cow<'a, CStr>> for CString {
     #[inline]
     fn from(s: Cow<'a, CStr>) -> Self {
@@ -714,7 +714,7 @@ impl From<CString> for Box<CStr> {
     }
 }
 
-#[stable(feature = "cow_from_cstr", since = "1.27.0")]
+#[stable(feature = "cow_from_cstr", since = "1.28.0")]
 impl<'a> From<CString> for Cow<'a, CStr> {
     #[inline]
     fn from(s: CString) -> Cow<'a, CStr> {
@@ -722,7 +722,7 @@ impl<'a> From<CString> for Cow<'a, CStr> {
     }
 }
 
-#[stable(feature = "cow_from_cstr", since = "1.27.0")]
+#[stable(feature = "cow_from_cstr", since = "1.28.0")]
 impl<'a> From<&'a CStr> for Cow<'a, CStr> {
     #[inline]
     fn from(s: &'a CStr) -> Cow<'a, CStr> {
@@ -730,7 +730,7 @@ impl<'a> From<&'a CStr> for Cow<'a, CStr> {
     }
 }
 
-#[stable(feature = "cow_from_cstr", since = "1.27.0")]
+#[stable(feature = "cow_from_cstr", since = "1.28.0")]
 impl<'a> From<&'a CString> for Cow<'a, CStr> {
     #[inline]
     fn from(s: &'a CString) -> Cow<'a, CStr> {
diff --git a/src/libstd/ffi/os_str.rs b/src/libstd/ffi/os_str.rs
index d865ffa8e2f..0a3148029d0 100644
--- a/src/libstd/ffi/os_str.rs
+++ b/src/libstd/ffi/os_str.rs
@@ -664,7 +664,7 @@ impl<'a> From<&'a OsStr> for Rc<OsStr> {
     }
 }
 
-#[stable(feature = "cow_from_osstr", since = "1.27.0")]
+#[stable(feature = "cow_from_osstr", since = "1.28.0")]
 impl<'a> From<OsString> for Cow<'a, OsStr> {
     #[inline]
     fn from(s: OsString) -> Cow<'a, OsStr> {
@@ -672,7 +672,7 @@ impl<'a> From<OsString> for Cow<'a, OsStr> {
     }
 }
 
-#[stable(feature = "cow_from_osstr", since = "1.27.0")]
+#[stable(feature = "cow_from_osstr", since = "1.28.0")]
 impl<'a> From<&'a OsStr> for Cow<'a, OsStr> {
     #[inline]
     fn from(s: &'a OsStr) -> Cow<'a, OsStr> {
@@ -680,7 +680,7 @@ impl<'a> From<&'a OsStr> for Cow<'a, OsStr> {
     }
 }
 
-#[stable(feature = "cow_from_osstr", since = "1.27.0")]
+#[stable(feature = "cow_from_osstr", since = "1.28.0")]
 impl<'a> From<&'a OsString> for Cow<'a, OsStr> {
     #[inline]
     fn from(s: &'a OsString) -> Cow<'a, OsStr> {
@@ -688,7 +688,7 @@ impl<'a> From<&'a OsString> for Cow<'a, OsStr> {
     }
 }
 
-#[stable(feature = "osstring_from_cow_osstr", since = "1.27.0")]
+#[stable(feature = "osstring_from_cow_osstr", since = "1.28.0")]
 impl<'a> From<Cow<'a, OsStr>> for OsString {
     #[inline]
     fn from(s: Cow<'a, OsStr>) -> Self {