1 | [package]
|
2 | name = "jobserver"
|
3 | version = "0.1.28"
|
4 | authors = ["Alex Crichton <alex@alexcrichton.com>" ]
|
5 | license = "MIT OR Apache-2.0"
|
6 | repository = "https://github.com/alexcrichton/jobserver-rs"
|
7 | homepage = "https://github.com/alexcrichton/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.50"
|
17 |
|
18 | [dev-dependencies]
|
19 | futures = "0.1"
|
20 | num_cpus = "1.0"
|
21 | tempfile = "3"
|
22 | tokio-core = "0.1"
|
23 | tokio-process = "0.2"
|
24 |
|
25 | [[test]]
|
26 | name = "client"
|
27 | harness = false
|
28 | path = "tests/client.rs"
|
29 |
|
30 | [[test]]
|
31 | name = "server"
|
32 | path = "tests/server.rs"
|
33 |
|
34 | [[test]]
|
35 | name = "client-of-myself"
|
36 | path = "tests/client-of-myself.rs"
|
37 | harness = false
|
38 |
|
39 | [[test]]
|
40 | name = "make-as-a-client"
|
41 | path = "tests/make-as-a-client.rs"
|
42 | harness = false
|
43 |
|
44 | [[test]]
|
45 | name = "helper"
|
46 | path = "tests/helper.rs"
|
47 | |