blob: e21d79197022486484617acd0640ca2553597d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
version = "0.3.1"
authors = ["Carl Lerche <me@carllerche.com>"]
homepage = "https://github.com/carllerche/nix-rust"
license = "MIT"
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"test/**/*"
]
[dependencies]
bitflags = "0.1"
[dev-dependencies]
rand = "0.3.0"
[dev-dependencies.nix-test]
path = "nix-test"
version = "*"
[[test]]
name = "test"
path = "test/test.rs"
|