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
|
|
|
]
|
2015-01-16 13:59:27 +00:00
|
|
|
|
2016-04-01 18:44:36 +00:00
|
|
|
build = "build.rs"
|
|
|
|
|
2015-04-08 17:58:06 +00:00
|
|
|
[features]
|
|
|
|
eventfd = []
|
2015-07-06 19:57:53 +00:00
|
|
|
execvpe = []
|
2015-10-20 18:10:31 +00:00
|
|
|
preadv_pwritev = []
|
|
|
|
signalfd = []
|
2015-04-08 17:58:06 +00:00
|
|
|
|
2015-01-16 13:59:27 +00:00
|
|
|
[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"
|
2016-03-05 19:27:22 +00:00
|
|
|
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
|
|
|
|
2016-04-01 18:44:36 +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"
|
2015-12-27 18:21:54 +00:00
|
|
|
tempdir = "0.3"
|
2016-02-10 00:36:04 +00:00
|
|
|
tempfile = "2"
|
2016-06-10 16:07:26 +00:00
|
|
|
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
|
2016-01-01 19:24:46 +00:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "test-mount"
|
|
|
|
path = "test/test_mount.rs"
|
|
|
|
harness = false
|