[package] name = "nix" description = "Rust friendly bindings to *nix APIs" version = "0.5.0-pre" authors = ["Carl Lerche "] homepage = "https://github.com/carllerche/nix-rust" license = "MIT" exclude = [ ".gitignore", ".travis.yml", "deploy.sh", "test/**/*" ] [features] eventfd = [] execvpe = [] preadv_pwritev = [] signalfd = [] [dependencies] libc = "0.2.7" bitflags = "0.4" [dev-dependencies] rand = "0.3.8" tempdir = "0.3" tempfile = "2" nix-test = { path = "nix-test" } [[test]] name = "test" path = "test/test.rs" [[test]] name = "test-signalfd" path = "test/test_signalfd.rs" harness = false test = true [[test]] name = "test-mount" path = "test/test_mount.rs" harness = false