2022-04-24 20:48:16 +00:00
|
|
|
# spell-checker:ignore (features) zerocopy
|
|
|
|
|
2015-11-24 01:00:51 +00:00
|
|
|
[package]
|
|
|
|
name = "uucore"
|
2023-09-03 12:42:54 +00:00
|
|
|
version = "0.0.21"
|
2019-05-13 04:15:56 +00:00
|
|
|
authors = ["uutils developers"]
|
2020-04-25 06:00:23 +00:00
|
|
|
license = "MIT"
|
|
|
|
description = "uutils ~ 'core' uutils code library (cross-platform)"
|
2019-05-13 05:12:36 +00:00
|
|
|
|
2020-11-07 19:30:36 +00:00
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
2022-03-06 21:10:31 +00:00
|
|
|
repository = "https://github.com/uutils/coreutils/tree/main/src/uucore"
|
2020-11-08 06:04:22 +00:00
|
|
|
# readme = "README.md"
|
2020-11-07 19:30:36 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
|
|
|
categories = ["command-line-utilities"]
|
2022-04-01 17:03:15 +00:00
|
|
|
edition = "2021"
|
2019-05-13 05:12:36 +00:00
|
|
|
|
2020-04-24 22:18:23 +00:00
|
|
|
[lib]
|
2023-06-08 07:07:12 +00:00
|
|
|
path = "src/lib/lib.rs"
|
2020-04-24 22:18:23 +00:00
|
|
|
|
2015-11-24 01:00:51 +00:00
|
|
|
[dependencies]
|
2023-06-08 07:07:12 +00:00
|
|
|
clap = { workspace = true }
|
|
|
|
uucore_procs = { workspace = true }
|
|
|
|
dns-lookup = { version = "2.0.2", optional = true }
|
2023-09-01 07:42:26 +00:00
|
|
|
dunce = { version = "1.0.4", optional = true }
|
2023-03-30 06:11:01 +00:00
|
|
|
wild = "2.1"
|
2023-07-22 14:14:32 +00:00
|
|
|
glob = { workspace = true }
|
2020-11-08 06:04:22 +00:00
|
|
|
# * optional
|
2023-07-22 14:14:32 +00:00
|
|
|
itertools = { workspace = true, optional = true }
|
2023-06-08 07:07:12 +00:00
|
|
|
thiserror = { workspace = true, optional = true }
|
|
|
|
time = { workspace = true, optional = true, features = [
|
|
|
|
"formatting",
|
|
|
|
"local-offset",
|
|
|
|
"macros",
|
|
|
|
] }
|
2020-11-08 06:04:22 +00:00
|
|
|
# * "problem" dependencies (pinned)
|
2023-06-08 07:07:12 +00:00
|
|
|
data-encoding = { version = "2.4", optional = true }
|
|
|
|
data-encoding-macro = { version = "0.1.13", optional = true }
|
|
|
|
z85 = { version = "3.0.5", optional = true }
|
2023-07-22 14:14:32 +00:00
|
|
|
libc = { workspace = true, optional = true }
|
2023-06-08 07:07:12 +00:00
|
|
|
once_cell = { workspace = true }
|
2022-04-03 10:51:48 +00:00
|
|
|
os_display = "0.1.3"
|
2021-09-13 18:09:13 +00:00
|
|
|
|
2023-08-31 14:26:07 +00:00
|
|
|
digest = { workspace = true, optional = true }
|
|
|
|
hex = { workspace = true, optional = true }
|
|
|
|
memchr = { workspace = true, optional = true }
|
|
|
|
md-5 = { workspace = true, optional = true }
|
|
|
|
sha1 = { workspace = true, optional = true }
|
|
|
|
sha2 = { workspace = true, optional = true }
|
|
|
|
sha3 = { workspace = true, optional = true }
|
|
|
|
blake2b_simd = { workspace = true, optional = true }
|
|
|
|
blake3 = { workspace = true, optional = true }
|
|
|
|
sm3 = { workspace = true, optional = true }
|
2023-02-13 03:40:16 +00:00
|
|
|
|
2021-09-13 18:09:13 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-06-08 07:07:12 +00:00
|
|
|
walkdir = { workspace = true, optional = true }
|
|
|
|
nix = { workspace = true, features = ["fs", "uio", "zerocopy", "signal"] }
|
2020-04-08 03:45:42 +00:00
|
|
|
|
2021-07-05 12:11:31 +00:00
|
|
|
[dev-dependencies]
|
2023-06-08 07:07:12 +00:00
|
|
|
clap = { workspace = true }
|
|
|
|
once_cell = { workspace = true }
|
|
|
|
tempfile = { workspace = true }
|
2021-07-05 12:11:31 +00:00
|
|
|
|
2021-05-10 08:56:33 +00:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2023-07-22 14:14:32 +00:00
|
|
|
winapi-util = { workspace = true, optional = true }
|
|
|
|
windows-sys = { workspace = true, optional = true, default-features = false, features = [
|
2023-06-08 07:07:12 +00:00
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_System_WindowsProgramming",
|
|
|
|
] }
|
2021-05-10 08:56:33 +00:00
|
|
|
|
2016-08-10 05:57:40 +00:00
|
|
|
[features]
|
2020-04-08 03:52:38 +00:00
|
|
|
default = []
|
2020-11-08 06:04:22 +00:00
|
|
|
# * non-default features
|
2023-09-01 14:08:07 +00:00
|
|
|
backup-control = []
|
2021-08-04 22:28:14 +00:00
|
|
|
encoding = ["data-encoding", "data-encoding-macro", "z85", "thiserror"]
|
2020-04-08 03:52:38 +00:00
|
|
|
entries = ["libc"]
|
2023-09-01 07:42:26 +00:00
|
|
|
fs = ["dunce", "libc", "winapi-util", "windows-sys"]
|
2022-10-22 08:19:09 +00:00
|
|
|
fsext = ["libc", "time", "windows-sys"]
|
2022-01-30 03:24:27 +00:00
|
|
|
lines = []
|
2021-11-30 01:17:27 +00:00
|
|
|
memo = ["itertools"]
|
2017-12-11 04:11:05 +00:00
|
|
|
mode = ["libc"]
|
2021-08-17 20:35:04 +00:00
|
|
|
perms = ["libc", "walkdir"]
|
2023-09-02 12:38:27 +00:00
|
|
|
pipes = []
|
2016-08-12 18:00:20 +00:00
|
|
|
process = ["libc"]
|
2023-09-10 13:07:37 +00:00
|
|
|
quoting-style = []
|
2023-09-03 14:20:15 +00:00
|
|
|
ranges = []
|
2021-05-12 03:48:06 +00:00
|
|
|
ringbuffer = []
|
2016-08-10 05:57:40 +00:00
|
|
|
signals = []
|
2023-08-31 14:26:07 +00:00
|
|
|
sum = [
|
|
|
|
"digest",
|
|
|
|
"hex",
|
|
|
|
"memchr",
|
|
|
|
"md-5",
|
|
|
|
"sha1",
|
|
|
|
"sha2",
|
|
|
|
"sha3",
|
|
|
|
"blake2b_simd",
|
|
|
|
"blake3",
|
|
|
|
"sm3",
|
|
|
|
]
|
2023-09-02 12:38:27 +00:00
|
|
|
update-control = []
|
|
|
|
utf8 = []
|
|
|
|
utmpx = ["time", "time/macros", "libc", "dns-lookup"]
|
2023-09-06 07:47:50 +00:00
|
|
|
version-cmp = []
|
2023-09-02 12:38:27 +00:00
|
|
|
wide = []
|