mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-20 12:11:08 +00:00
Make all common data like version, edition, license, ... be managed in one central workspace. This makes management much simpler
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
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/src/tests/common"
|
|
# readme = "README.md"
|
|
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]
|
|
glob = { workspace = true }
|
|
libc = { workspace = true }
|
|
pretty_assertions = "1.4.0"
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
time = { workspace = true, features = ["local-offset"] }
|
|
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 }
|