summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2015-02-10 22:19:04 -0800
committerCarl Lerche <me@carllerche.com>2015-02-10 22:19:04 -0800
commit62c5a727eac3c5f85853e17612d7fd0c6aa47c2f (patch)
tree95c44cc4e99ff95fcb49c7c2cc962b4e88aa1816 /src
parent57fe78a3cd79efae8bc9ce89e085cf65dfaae9a9 (diff)
downloadnix-62c5a727eac3c5f85853e17612d7fd0c6aa47c2f.zip
Fix warnings
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 192eeccf..7cd9ee55 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,9 +1,10 @@
#![crate_name = "nix"]
-#![feature(linkage)]
-#![allow(unstable)]
+#![feature(core, linkage, libc, hash, os, path, std_misc)]
#![allow(non_camel_case_types)]
-#[macro_use] extern crate bitflags;
+
+#[macro_use]
+extern crate bitflags;
extern crate libc;
extern crate core;