-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
45 lines (37 loc) · 922 Bytes
/
Cargo.toml
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
43
44
45
[package]
name = "jobserver"
version = "0.1.32"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/jobserver-rs"
homepage = "https://github.com/rust-lang/jobserver-rs"
documentation = "https://docs.rs/jobserver"
description = """
An implementation of the GNU Make jobserver for Rust.
"""
edition = "2021"
rust-version = "1.63"
[target.'cfg(unix)'.dependencies]
libc = "0.2.87"
[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.28.0", features = ["fs"] }
[dev-dependencies]
tempfile = "3.10.1"
[[test]]
name = "client"
harness = false
path = "tests/client.rs"
[[test]]
name = "server"
path = "tests/server.rs"
[[test]]
name = "client-of-myself"
path = "tests/client-of-myself.rs"
harness = false
[[test]]
name = "make-as-a-client"
path = "tests/make-as-a-client.rs"
harness = false
[[test]]
name = "helper"
path = "tests/helper.rs"