third_party_rust_nix/Cargo.toml

55 lines
1012 B
TOML
Raw Normal View History

2014-08-07 20:02:28 +00:00
[package]
2015-01-05 08:30:07 +00:00
name = "nix"
2015-02-21 00:43:26 +00:00
description = "Rust friendly bindings to *nix APIs"
2016-09-09 19:28:52 +00:00
version = "0.7.1-pre"
2015-01-05 08:30:07 +00:00
authors = ["Carl Lerche <me@carllerche.com>"]
2016-04-07 14:29:16 +00:00
homepage = "https://github.com/nix-rust/nix"
repository = "https://github.com/nix-rust/nix"
2015-01-05 08:30:07 +00:00
license = "MIT"
2015-02-21 00:43:26 +00:00
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
2015-03-25 18:28:57 +00:00
"test/**/*"
2015-02-21 00:43:26 +00:00
]
build = "build.rs"
[features]
eventfd = []
2015-07-06 19:57:53 +00:00
execvpe = []
2015-10-20 18:10:31 +00:00
preadv_pwritev = []
signalfd = []
[dependencies]
2016-09-09 19:28:52 +00:00
libc = { git = "https://github.com/rust-lang/libc" }
2016-02-28 04:41:01 +00:00
bitflags = "0.4"
cfg-if = "0.1.0"
2016-01-05 22:38:23 +00:00
void = "1.0.2"
2015-02-11 06:19:04 +00:00
[build-dependencies]
rustc_version = "0.1.7"
semver = "0.1.20" # Old version for compatibility with rustc_version.
2015-02-11 06:19:04 +00:00
[dev-dependencies]
2015-04-23 13:06:05 +00:00
rand = "0.3.8"
tempdir = "0.3"
2016-02-10 00:36:04 +00:00
tempfile = "2"
nix-test = { path = "nix-test", version = "0.0.1" }
2015-02-21 22:33:27 +00:00
[[test]]
name = "test"
path = "test/test.rs"
2015-09-03 19:20:53 +00:00
[[test]]
name = "test-signalfd"
path = "test/test_signalfd.rs"
harness = false
test = true
[[test]]
name = "test-mount"
path = "test/test_mount.rs"
harness = false