mirror of
https://github.com/jiangcuo/nix.git
synced 2026-01-21 20:52:55 +00:00
The script checked for rustc >= 1.6.0, but the minimum supported version for this crate is now 1.7.0
49 lines
875 B
TOML
49 lines
875 B
TOML
[package]
|
|
|
|
name = "nix"
|
|
description = "Rust friendly bindings to *nix APIs"
|
|
version = "0.8.0-pre"
|
|
authors = ["The nix-rust Project Developers"]
|
|
homepage = "https://github.com/nix-rust/nix"
|
|
repository = "https://github.com/nix-rust/nix"
|
|
license = "MIT"
|
|
exclude = [
|
|
".gitignore",
|
|
".travis.yml",
|
|
"deploy.sh",
|
|
"test/**/*"
|
|
]
|
|
|
|
[features]
|
|
eventfd = []
|
|
execvpe = []
|
|
preadv_pwritev = []
|
|
signalfd = []
|
|
|
|
[dependencies]
|
|
libc = { git = "https://github.com/rust-lang/libc" }
|
|
bitflags = "0.4"
|
|
cfg-if = "0.1.0"
|
|
void = "1.0.2"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.3.8"
|
|
tempdir = "0.3"
|
|
tempfile = "2"
|
|
nix-test = { path = "nix-test", version = "0.0.1" }
|
|
|
|
[[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
|