]> git.proxmox.com Git - rustc.git/blob - src/vendor/nix/Cargo.toml
New upstream version 1.23.0+dfsg1
[rustc.git] / src / vendor / nix / Cargo.toml
1 [package]
2
3 name = "nix"
4 description = "Rust friendly bindings to *nix APIs"
5 version = "0.8.1"
6 authors = ["The nix-rust Project Developers"]
7 homepage = "https://github.com/nix-rust/nix"
8 repository = "https://github.com/nix-rust/nix"
9 license = "MIT"
10 categories = ["os::unix-apis"]
11 exclude = [
12 ".gitignore",
13 ".travis.yml",
14 "deploy.sh",
15 "test/**/*"
16 ]
17
18 [features]
19 eventfd = []
20 execvpe = []
21 preadv_pwritev = []
22 signalfd = []
23
24 [dependencies]
25 libc = "0.2.21"
26 bitflags = "0.7"
27 cfg-if = "0.1.0"
28 void = "1.0.2"
29
30 [dev-dependencies]
31 rand = "0.3.8"
32 tempdir = "0.3"
33 tempfile = "2"
34 nix-test = { path = "nix-test", version = "0.0.1" }
35
36 [[test]]
37 name = "test"
38 path = "test/test.rs"
39
40 [[test]]
41 name = "test-signalfd"
42 path = "test/test_signalfd.rs"
43 harness = false
44 test = true
45
46 [[test]]
47 name = "test-mount"
48 path = "test/test_mount.rs"
49 harness = false