diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-07-01 15:15:19 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-07-01 15:43:24 +0200 |
commit | bddfe9a4684cf6ffa68fb283a222ce14242553c8 (patch) | |
tree | 03b9517e6b6b649b90c0ab877e3e3d8765365408 /components/script/lib.rs | |
parent | d1efad676301798756c36990de8aa2784dab91db (diff) | |
download | servo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.tar.gz servo-bddfe9a4684cf6ffa68fb283a222ce14242553c8.zip |
Remove `default-except-unstable`
… and use remaining unstable features unconditionally.
This doesn’t actually change the set of crates that can build on the Stable channel.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 9bc2d929b13..1be386dfd1c 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -2,11 +2,11 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -#![cfg_attr(feature = "unstable", feature(core_intrinsics))] -#![cfg_attr(feature = "unstable", feature(on_unimplemented))] #![feature(const_fn)] +#![feature(core_intrinsics)] #![feature(drain_filter)] #![feature(inner_deref)] +#![feature(on_unimplemented)] #![feature(plugin)] #![feature(type_alias_enum_variants)] #![deny(unsafe_code)] |