1[package]
2name = "jobserver"
3version = "0.1.28"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/alexcrichton/jobserver-rs"
7homepage = "https://github.com/alexcrichton/jobserver-rs"
8documentation = "https://docs.rs/jobserver"
9description = """
10An implementation of the GNU make jobserver for Rust
11"""
12edition = "2021"
13rust-version = "1.63"
14
15[target.'cfg(unix)'.dependencies]
16libc = "0.2.50"
17
18[dev-dependencies]
19futures = "0.1"
20num_cpus = "1.0"
21tempfile = "3"
22tokio-core = "0.1"
23tokio-process = "0.2"
24
25[[test]]
26name = "client"
27harness = false
28path = "tests/client.rs"
29
30[[test]]
31name = "server"
32path = "tests/server.rs"
33
34[[test]]
35name = "client-of-myself"
36path = "tests/client-of-myself.rs"
37harness = false
38
39[[test]]
40name = "make-as-a-client"
41path = "tests/make-as-a-client.rs"
42harness = false
43
44[[test]]
45name = "helper"
46path = "tests/helper.rs"
47