Skip to content

Commit 6cb3449

Browse files
committed
Move IpAddr and SocketAddr to core
1 parent 43ee4d1 commit 6cb3449

File tree

16 files changed

+4079
-3784
lines changed

16 files changed

+4079
-3784
lines changed

library/core/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@
124124
#![feature(const_inherent_unchecked_arith)]
125125
#![feature(const_int_unchecked_arith)]
126126
#![feature(const_intrinsic_forget)]
127+
#![feature(const_ipv4)]
128+
#![feature(const_ipv6)]
127129
#![feature(const_likely)]
128130
#![feature(const_maybe_uninit_uninit_array)]
129131
#![feature(const_maybe_uninit_as_mut_ptr)]
@@ -179,6 +181,7 @@
179181
#![feature(const_slice_index)]
180182
#![feature(const_is_char_boundary)]
181183
#![feature(const_cstr_methods)]
184+
#![feature(ip)]
182185
#![feature(is_ascii_octdigit)]
183186
//
184187
// Language features:
@@ -349,6 +352,7 @@ pub mod cell;
349352
pub mod char;
350353
pub mod ffi;
351354
pub mod iter;
355+
pub mod net;
352356
pub mod option;
353357
pub mod panic;
354358
pub mod panicking;

0 commit comments

Comments
 (0)