forked from rust-lang/jobserver-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 884 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.26"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/jobserver-rs"
homepage = "https://github.com/alexcrichton/jobserver-rs"
documentation = "https://docs.rs/jobserver"
description = """
An implementation of the GNU make jobserver for Rust
"""
edition = "2018"
[target.'cfg(unix)'.dependencies]
libc = "0.2.50"
[dev-dependencies]
futures = "0.1"
num_cpus = "1.0"
tempfile = "3"
tokio-core = "0.1"
tokio-process = "0.2"
[[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"