1[package]
2name = "jobserver"
3version = "0.1.33"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5license = "MIT OR Apache-2.0"
6repository = "https://github.com/rust-lang/jobserver-rs"
7homepage = "https://github.com/rust-lang/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.171"
17
18[target.'cfg(unix)'.dev-dependencies]
19nix = { version = "0.28.0", features = ["fs"] }
20
21[target.'cfg(windows)'.dependencies]
22getrandom = { version = "0.3.2", features = ["std"] }
23
24[dev-dependencies]
25tempfile = "3.10.1"
26
27[[test]]
28name = "client"
29harness = false
30path = "tests/client.rs"
31
32[[test]]
33name = "server"
34path = "tests/server.rs"
35
36[[test]]
37name = "client-of-myself"
38path = "tests/client-of-myself.rs"
39harness = false
40
41[[test]]
42name = "make-as-a-client"
43path = "tests/make-as-a-client.rs"
44harness = false
45
46[[test]]
47name = "helper"
48path = "tests/helper.rs"
49