diff --git a/Cargo.toml b/Cargo.toml index 98968ba58e..809230dcab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,6 @@ authors = ["Carl Lerche "] homepage = "https://github.com/carllerche/nix-rust" license = "MIT" exclude = [".gitignore", ".travis.yml", "tests/**/*"] + +[dependencies] +bitflags = "0.1" diff --git a/src/lib.rs b/src/lib.rs index 201c550e23..e52fc0b890 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,6 +4,8 @@ #![allow(unstable)] #![allow(non_camel_case_types)] +#[macro_use] extern crate bitflags; + extern crate libc; extern crate core;