diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-06-25 12:03:15 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-06-25 12:03:15 -0600 |
commit | 21b48fc44d0b32627918b4778fed16203eecdba5 (patch) | |
tree | a1a33e5d94c0c2002efba55844a7849086fb5a04 /components/util/lib.rs | |
parent | 57cc84b2935c429c92774649275625a7fd63973c (diff) | |
parent | 73a7e92bfdc6499c486fd0ebd8b3cc72ed285a98 (diff) | |
download | servo-21b48fc44d0b32627918b4778fed16203eecdba5.tar.gz servo-21b48fc44d0b32627918b4778fed16203eecdba5.zip |
Auto merge of #6459 - servo:rustup_20150625, r=SimonSapin
Update to rustc 2d0cbf3e3e25e092bd9e4c94d08e446b680869f0.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6459)
<!-- Reviewable:end -->
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 77273a35d07..8213c4e56c4 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -4,16 +4,20 @@ #![feature(alloc)] #![feature(box_syntax)] -#![feature(collections)] -#![feature(core)] +#![feature(core_intrinsics)] #![feature(exit_status)] +#![feature(fnbox)] +#![feature(hashmap_hasher)] +#![feature(heap_api)] +#![feature(oom)] #![feature(optin_builtin_traits)] #![feature(path_ext)] #![feature(plugin)] #![feature(rustc_private)] +#![feature(slice_extras)] #![feature(step_by)] #![feature(step_trait)] -#![feature(std_misc)] +#![feature(thunk)] #![feature(zero_one)] #![plugin(string_cache_plugin)] |