diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-06-09 11:18:03 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-06-17 09:06:59 -0700 |
| commit | c14d86fd3ff3ba2d01a6e859290b30e74081313b (patch) | |
| tree | 79ec999c2885ff0d2f3b9836be5938bc0d6339b4 /src/libserialize | |
| parent | e7a5a1c33a7794a97eb11a38cc576375a3553a64 (diff) | |
| download | rust-c14d86fd3ff3ba2d01a6e859290b30e74081313b.tar.gz rust-c14d86fd3ff3ba2d01a6e859290b30e74081313b.zip | |
core: Split apart the global `core` feature
This commit shards the broad `core` feature of the libcore library into finer grained features. This split groups together similar APIs and enables tracking each API separately, giving a better sense of where each feature is within the stabilization process. A few minor APIs were deprecated along the way: * Iterator::reverse_in_place * marker::NoCopy
Diffstat (limited to 'src/libserialize')
| -rw-r--r-- | src/libserialize/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index 31790ce6290..8170dd95730 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -29,12 +29,13 @@ Core encoding and decoding interfaces. #![feature(box_syntax)] #![feature(collections)] -#![feature(core)] +#![feature(num_bits_bytes)] +#![feature(num_wrapping)] #![feature(rustc_private)] #![feature(staged_api)] #![feature(std_misc)] -#![feature(unicode)] #![feature(str_char)] +#![feature(unicode)] #![cfg_attr(test, feature(test))] // test harness access |
