about summary refs log tree commit diff
path: root/library/std/src/os/android
diff options
context:
space:
mode:
authorJohn Millikin <john@john-millikin.com>2023-03-18 12:22:53 +0900
committerJohn Millikin <john@john-millikin.com>2023-03-18 12:32:09 +0900
commita3f3db842df11849d7060eaa8c2b50d3e49bed03 (patch)
tree3fc5b0ec612f8f29dec90a8ea7ee0ef990076032 /library/std/src/os/android
parent13afbdaa0655dda23d7129e59ac48f1ec88b2084 (diff)
downloadrust-a3f3db842df11849d7060eaa8c2b50d3e49bed03.tar.gz
rust-a3f3db842df11849d7060eaa8c2b50d3e49bed03.zip
Stabilise `unix_socket_abstract`
Fixes https://github.com/rust-lang/rust/issues/85410
Diffstat (limited to 'library/std/src/os/android')
-rw-r--r--library/std/src/os/android/net.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/os/android/net.rs b/library/std/src/os/android/net.rs
index 7cecd1bbfaa..4e88ab8ff5c 100644
--- a/library/std/src/os/android/net.rs
+++ b/library/std/src/os/android/net.rs
@@ -1,8 +1,8 @@
 //! Android-specific networking functionality.
 
-#![unstable(feature = "tcp_quickack", issue = "96256")]
+#![stable(feature = "unix_socket_abstract", since = "CURRENT_RUSTC_VERSION")]
 
-#[unstable(feature = "unix_socket_abstract", issue = "85410")]
+#[stable(feature = "unix_socket_abstract", since = "CURRENT_RUSTC_VERSION")]
 pub use crate::os::net::linux_ext::addr::SocketAddrExt;
 
 #[unstable(feature = "tcp_quickack", issue = "96256")]