1[package]
2name        = "nix"
3description = "Rust friendly bindings to *nix APIs"
4version     = "0.14.1"
5authors     = ["The nix-rust Project Developers"]
6repository  = "https://github.com/nix-rust/nix"
7license     = "MIT"
8categories  = ["os::unix-apis"]
9exclude     = [
10  "/.gitignore",
11  "/.travis.yml",
12  "/ci/*",
13  "/Cross.toml",
14  "/RELEASE_PROCEDURE.md",
15  "/bors.toml"
16]
17
18[dependencies]
19libc = "0.2.57"
20bitflags = "1.0"
21cfg-if = "0.1.0"
22void = "1.0.2"
23
24[target.'cfg(target_os = "dragonfly")'.build-dependencies]
25cc = "1"
26
27[dev-dependencies]
28bytes = "0.4.8"
29lazy_static = "1.2"
30rand = ">= 0.6, < 0.7"
31tempfile = "3.0.5"
32
33[target.'cfg(any(target_os = "android", target_os = "linux"))'.dev-dependencies]
34caps = "0.3.1"
35
36[target.'cfg(target_os = "freebsd")'.dev-dependencies]
37sysctl = "0.1"
38
39[[test]]
40name = "test"
41path = "test/test.rs"
42
43[[test]]
44name = "test-aio-drop"
45path = "test/sys/test_aio_drop.rs"
46
47[[test]]
48name = "test-lio-listio-resubmit"
49path = "test/sys/test_lio_listio_resubmit.rs"
50
51[[test]]
52name = "test-mount"
53path = "test/test_mount.rs"
54harness = false
55
56[[test]]
57name = "test-ptymaster-drop"
58path = "test/test_ptymaster_drop.rs"
59