mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
41 lines
999 B
TOML
41 lines
999 B
TOML
# spell-checker:ignore (features) zerocopy serde
|
|
|
|
[package]
|
|
name = "uutests"
|
|
description = "uutils ~ 'core' uutils test library (cross-platform)"
|
|
repository = "https://github.com/uutils/coreutils/tree/main/tests/uutests"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lib]
|
|
path = "src/lib/lib.rs"
|
|
|
|
[dependencies]
|
|
libc = { workspace = true }
|
|
pretty_assertions = "1.4.0"
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
uucore = { workspace = true, features = [
|
|
"mode",
|
|
"entries",
|
|
"process",
|
|
"signals",
|
|
"utmpx",
|
|
] }
|
|
ctor = "0.4.1"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { workspace = true, features = ["process", "signal", "user", "term"] }
|
|
rlimit = "0.10.1"
|
|
xattr = { workspace = true }
|