summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2015-02-14 21:20:39 -0800
committerCarl Lerche <me@carllerche.com>2015-02-14 21:20:39 -0800
commit512aa98dc6c8167a666be13955e6a4614c41ebbc (patch)
tree2b9e0659a6a4ae594a3d3ab8cdfdd5a83158360d
parent42d1f8a828a2cf0d04cc646ab029f9db06c1398b (diff)
downloadnix-512aa98dc6c8167a666be13955e6a4614c41ebbc.zip
Fix warnings
-rw-r--r--src/lib.rs2
-rw-r--r--tests/tests.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1b80c106..e9e72378 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,6 @@
#![crate_name = "nix"]
-#![feature(collections, core, linkage, libc, hash, os)]
+#![feature(collections, core, linkage, libc, hash, os, std_misc)]
#![allow(non_camel_case_types)]
#[macro_use]
diff --git a/tests/tests.rs b/tests/tests.rs
index b0b09a2b..0ec38f58 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -1,4 +1,3 @@
-#![feature(core)]
extern crate nix;
mod sys {