diff options
author | Carl Lerche <me@carllerche.com> | 2015-02-14 21:20:39 -0800 |
---|---|---|
committer | Carl Lerche <me@carllerche.com> | 2015-02-14 21:20:39 -0800 |
commit | 512aa98dc6c8167a666be13955e6a4614c41ebbc (patch) | |
tree | 2b9e0659a6a4ae594a3d3ab8cdfdd5a83158360d | |
parent | 42d1f8a828a2cf0d04cc646ab029f9db06c1398b (diff) | |
download | nix-512aa98dc6c8167a666be13955e6a4614c41ebbc.zip |
Fix warnings
-rw-r--r-- | src/lib.rs | 2 | ||||
-rw-r--r-- | tests/tests.rs | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -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 { |