summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: c47dfaf69cf6488e8c6bee884718b2b2682633bf (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
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]

name        = "nix"
description = "Rust friendly bindings to *nix APIs"
version     = "0.9.0-pre"
authors     = ["The nix-rust Project Developers"]
homepage    = "https://github.com/nix-rust/nix"
repository  = "https://github.com/nix-rust/nix"
license     = "MIT"
categories  = ["os::unix-apis"]
exclude     = [
  ".gitignore",
  ".travis.yml",
  "deploy.sh",
  "test/**/*"
]

[dependencies]
libc = "0.2.25"
bitflags = "0.9"
cfg-if = "0.1.0"
void = "1.0.2"

[dev-dependencies]
lazy_static = "0.2"
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-mount"
path = "test/test_mount.rs"
harness = false

[[test]]
name = "test-ptymaster-drop"
path = "test/test_ptymaster_drop.rs"