We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bitflags!
1 parent b31eee4 commit 967a729Copy full SHA for 967a729
Cargo.toml
@@ -7,3 +7,6 @@ authors = ["Carl Lerche <me@carllerche.com>"]
7
homepage = "https://github.com/carllerche/nix-rust"
8
license = "MIT"
9
exclude = [".gitignore", ".travis.yml", "tests/**/*"]
10
+
11
+[dependencies]
12
+bitflags = "0.1"
src/lib.rs
@@ -3,6 +3,7 @@
3
#![feature(linkage)]
4
#![allow(unstable)]
5
#![allow(non_camel_case_types)]
6
+#[macro_use] extern crate bitflags;
extern crate libc;
extern crate core;
0 commit comments