aboutsummaryrefslogtreecommitdiffstats
path: root/components/remutex
diff options
context:
space:
mode:
Diffstat (limited to 'components/remutex')
-rw-r--r--components/remutex/Cargo.toml3
-rw-r--r--components/remutex/lib.rs2
2 files changed, 0 insertions, 5 deletions
diff --git a/components/remutex/Cargo.toml b/components/remutex/Cargo.toml
index b3937587a62..f03fa5ada18 100644
--- a/components/remutex/Cargo.toml
+++ b/components/remutex/Cargo.toml
@@ -9,9 +9,6 @@ publish = false
name = "servo_remutex"
path = "lib.rs"
-[features]
-unstable = ["nonzero/unstable"]
-
[dependencies]
lazy_static = "0.2"
log = "0.3.5"
diff --git a/components/remutex/lib.rs b/components/remutex/lib.rs
index 6793429bf1e..2589a6d1162 100644
--- a/components/remutex/lib.rs
+++ b/components/remutex/lib.rs
@@ -10,8 +10,6 @@
//! It provides the same interface as https://github.com/rust-lang/rust/blob/master/src/libstd/sys/common/remutex.rs
//! so if those types are ever exported, we should be able to replace this implemtation.
-#![cfg_attr(feature = "unstable", feature(nonzero))]
-
extern crate nonzero;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;