49 lines
1013 B
TOML
49 lines
1013 B
TOML
[package]
|
|
name = "jobserver"
|
|
version = "0.1.35"
|
|
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.85"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.171"
|
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
|
nix = { version = "0.31.3", features = ["fs"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
getrandom = { version = "0.4", features = ["std"] }
|
|
|
|
[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"
|