Skip to content

Commit 98899b7

Browse files
committed
Stabilize ip_in_core feature
1 parent cf64273 commit 98899b7

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

library/core/src/net/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! * [`SocketAddr`] represents socket addresses of either IPv4 or IPv6; [`SocketAddrV4`]
1010
//! and [`SocketAddrV6`] are respectively IPv4 and IPv6 socket addresses
1111
12-
#![unstable(feature = "ip_in_core", issue = "108443")]
12+
#![stable(feature = "ip_in_core", since = "CURRENT_RUSTC_VERSION")]
1313

1414
#[stable(feature = "rust1", since = "1.0.0")]
1515
pub use self::ip_addr::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};

library/core/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
#![feature(slice_internals)]
7272
#![feature(slice_partition_dedup)]
7373
#![feature(ip)]
74-
#![feature(ip_in_core)]
7574
#![feature(iter_advance_by)]
7675
#![feature(iter_array_chunks)]
7776
#![feature(iter_collect_into)]

library/std/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@
325325
#![feature(hasher_prefixfree_extras)]
326326
#![feature(hashmap_internals)]
327327
#![feature(ip)]
328-
#![feature(ip_in_core)]
329328
#![feature(maybe_uninit_slice)]
330329
#![feature(maybe_uninit_uninit_array)]
331330
#![feature(maybe_uninit_write_slice)]

0 commit comments

Comments
 (0)