Files

47 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2025-03-28 09:22:03 +01:00
# spell-checker:ignore (features) zerocopy serde
[package]
name = "uutests"
description = "uutils ~ 'core' uutils test library (cross-platform)"
2025-04-26 18:36:21 -07:00
repository = "https://github.com/uutils/coreutils/tree/main/tests/uutests"
2025-04-09 03:49:10 -04:00
categories.workspace = true
edition.workspace = true
rust-version.workspace = true
2025-04-09 03:49:10 -04:00
homepage.workspace = true
keywords.workspace = true
license.workspace = true
version.workspace = true
2025-03-28 09:22:03 +01:00
[package.metadata.docs.rs]
all-features = true
[lints]
workspace = true
2025-03-28 09:22:03 +01:00
[lib]
path = "src/lib/lib.rs"
[dependencies]
ctor = { workspace = true }
2025-03-28 09:22:03 +01:00
libc = { workspace = true }
pretty_assertions = { workspace = true }
2025-03-28 09:22:03 +01:00
rand = { workspace = true }
regex = { workspace = true }
tempfile = { workspace = true }
uucore = { workspace = true, features = [
"mode",
"entries",
"process",
"signals",
"utmpx",
] }
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
[target.'cfg(unix)'.dependencies]
nix = { workspace = true, features = ["process", "signal", "term", "user"] }
rlimit = { workspace = true }
[target.'cfg(all(unix, not(any(target_os = "macos", target_os = "openbsd"))))'.dependencies]
2025-03-28 09:22:03 +01:00
xattr = { workspace = true }