1 | [package] |
2 | name = "jobserver" |
3 | version = "0.1.33" |
4 | authors = ["Alex Crichton <alex@alexcrichton.com>" ] |
5 | license = "MIT OR Apache-2.0" |
6 | repository = "https://github.com/rust-lang/jobserver-rs" |
7 | homepage = "https://github.com/rust-lang/jobserver-rs" |
8 | documentation = "https://docs.rs/jobserver" |
9 | description = "" " |
10 | An implementation of the GNU Make jobserver for Rust. |
11 | " "" |
12 | edition = "2021" |
13 | rust-version = "1.63" |
14 | |
15 | [target.'cfg(unix)'.dependencies] |
16 | libc = "0.2.171" |
17 | |
18 | [target.'cfg(unix)'.dev-dependencies] |
19 | nix = { version = "0.28.0" , features = ["fs" ] } |
20 | |
21 | [target.'cfg(windows)'.dependencies] |
22 | getrandom = { version = "0.3.2" , features = ["std" ] } |
23 | |
24 | [dev-dependencies] |
25 | tempfile = "3.10.1" |
26 | |
27 | [[test]] |
28 | name = "client" |
29 | harness = false |
30 | path = "tests/client.rs" |
31 | |
32 | [[test]] |
33 | name = "server" |
34 | path = "tests/server.rs" |
35 | |
36 | [[test]] |
37 | name = "client-of-myself" |
38 | path = "tests/client-of-myself.rs" |
39 | harness = false |
40 | |
41 | [[test]] |
42 | name = "make-as-a-client" |
43 | path = "tests/make-as-a-client.rs" |
44 | harness = false |
45 | |
46 | [[test]] |
47 | name = "helper" |
48 | path = "tests/helper.rs" |
49 | |