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
|
2026-02-06 22:58:51 +00:00
|
|
|
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
|
|
|
|
|
|
2026-02-05 15:08:39 +08:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2025-03-28 09:22:03 +01:00
|
|
|
[lib]
|
|
|
|
|
path = "src/lib/lib.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-08-11 11:04:04 +08:00
|
|
|
ctor = { workspace = true }
|
2025-03-28 09:22:03 +01:00
|
|
|
libc = { workspace = true }
|
2026-03-15 00:16:14 +00:00
|
|
|
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]
|
2026-01-22 17:55:40 +00:00
|
|
|
nix = { workspace = true, features = ["process", "signal", "term", "user"] }
|
2026-01-24 10:50:52 +00:00
|
|
|
rlimit = { workspace = true }
|
2026-01-23 17:34:05 +00:00
|
|
|
|
|
|
|
|
[target.'cfg(all(unix, not(any(target_os = "macos", target_os = "openbsd"))))'.dependencies]
|
2025-03-28 09:22:03 +01:00
|
|
|
xattr = { workspace = true }
|