Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ jobs:
unset CARGO_FEATURES_OPTION
if [ -n "${{ matrix.job.features }}" ]; then CARGO_FEATURES_OPTION='--features "${{ matrix.job.features }}"' ; fi
outputs CARGO_FEATURES_OPTION
- name: Generate minimal lockfile
run: |
RUSTC_BOOTSTRAP=1 cargo update -Z minimal-versions
# TODO: https://github.com/ferrilab/bitvec/pull/301
cargo update tap --precise 1.0.1
- name: Confirm MinSRV compatible '*/Cargo.lock'
shell: bash
run: |
Expand Down
39 changes: 20 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coreutils (uutils)
# * see the repository LICENSE, README, and CONTRIBUTING files for more information

# spell-checker:ignore (libs) bigdecimal datetime foldhash serde kqueue libcrypto libselinux mangen memmap uuhelp startswith constness expl unnested logind cfgs interner getauxval hashbrown
# spell-checker:ignore (libs) bigdecimal datetime foldhash serde kqueue libcrypto libselinux mangen memmap uuhelp startswith constness expl unnested logind cfgs interner getauxval hashbrown tzdb

[package]
name = "coreutils"
Expand Down Expand Up @@ -327,11 +327,11 @@ ansi-width = "0.1.0"
# arrive without one running.
ariadne = "0.6.0"
base64-simd = "0.8"
bigdecimal = "0.4"
bigdecimal = "0.4.9"
bstr = "1.9.1"
bytecount = "0.6.8"
cfg_aliases = "0.2.2"
clap = { version = "4.5", features = ["wrap_help", "cargo", "color"] }
clap = { version = "4.5.18", features = ["wrap_help", "cargo", "color"] }
clap_complete = "4.4"
clap_mangen = "0.3"
crossterm = { version = "0.29.0", default-features = false }
Expand All @@ -345,22 +345,23 @@ dunce = "1.0.4"
filetime = "0.2.29"
foldhash = "0.2.0"
gcd = "2.3"
glob = "0.3.1"
glob = "0.3.2"
half = "2.4.1"
hashbrown = '0.17.1'
hex-literal = "1.0.0"
hostname = "0.4"
icu_calendar = { version = "2.0.0", default-features = false }
icu_collator = { version = "2.0.0", default-features = false }
icu_datetime = { version = "2.0.0", default-features = false }
icu_decimal = { version = "2.0.0", default-features = false }
icu_locale = { version = "2.0.0", default-features = false }
icu_provider = { version = "2.0.0", default-features = false }
icu_calendar = { version = "2.1.0", default-features = false }
icu_collator = { version = "2.1.0", default-features = false }
icu_datetime = { version = "2.1.0", default-features = false }
icu_decimal = { version = "2.1.0", default-features = false }
icu_locale = { version = "2.1.0", default-features = false }
icu_provider = { version = "2.1.1", default-features = false }
indicatif = "0.18.0"
itertools = "0.15.0"
itoa = "1.0.15"
jiff = "0.2.18"
jiff-icu = "0.2.2"
jiff-tzdb = "0.1.4"
libc = "0.2.186"
lscolors = { version = "0.21.0", default-features = false, features = [
"gnu_legacy",
Expand All @@ -370,7 +371,7 @@ memmap2 = "0.9.4"
nix = { version = "0.31.3", default-features = false }
nom = "8.0.0"
notify = { version = "8.2.0", features = ["macos_kqueue"] }
num-bigint = "0.4.4"
num-bigint = "0.4.6"
num-prime = "0.5.0"
num-traits = "0.2.19"
fancy-regex = { version = "0.19.2", default-features = false, features = [
Expand All @@ -384,29 +385,29 @@ phf = "0.14.0"
phf_codegen = "0.14.0"
platform-info = "2.0.3"
pretty_assertions = "1.4.1"
proc-macro2 = "1.0.81"
proc-macro2 = "1.0.93"
procfs = "0.18"
rand = { version = "0.10.1", features = ["std_rng"] }
rand_chacha = { version = "0.10.0" }
rayon = "1.10"
regex = "1.10.4"
regex = "1.11.3"
rlimit = "0.11.0"
rstest = "0.27.0"
rstest_reuse = "0.7.0"
rustc-hash = "2.1.1"
rust-ini = "0.21.0"
rustix = { version = "1.1.4", default-features = false }
self_cell = "1.0.4"
self_cell = "1.2.0"
selinux = "0.6"
tempfile = "3.15.0"
tempfile = "3.20.0"
terminal_size = "0.4.0"
textwrap = { version = "0.16.1", features = ["terminal_size"] }
thiserror = "2.0.3"
time = { version = "0.3.36" }
quote = "1.0.36"
quote = "1.0.38"
unicode-width = "0.2.0"
unindent = "0.2.3"
unit-prefix = "0.5"
unit-prefix = "0.5.1"
utmp-classic = "0.1.6"
uutils_term_grid = "0.8"
walkdir = "2.5"
Expand All @@ -425,9 +426,9 @@ shake = "0.1.0"
blake2b_simd = "1.0.2"
blake3 = "1.5.1"
sm3 = { version = "0.5.0", default-features = false, features = ["alloc"] }
crc-fast = { version = "1.5.0", default-features = false }
crc-fast = { version = "1.8.2", default-features = false }
digest = "0.11.0"
openssl = { version = "0.10", features = ["vendored"] }
openssl = { version = "0.10.39", features = ["vendored"] }

# Fluent dependencies
fluent = "0.17.0"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/uufuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ similar = "3.0.0"
uucore = { version = "0.11.0", path = "../../src/uucore", features = [
"parser",
] }
tempfile = "3.15.0"
tempfile = "3.20.0"
rustix = { version = "1.1.4", features = ["stdio", "pipe"] }
2 changes: 1 addition & 1 deletion src/uu/date/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
libc = { workspace = true }
rustix = { workspace = true, features = ["time"] }

[target.'cfg(target_env = "ohos")'.dependencies]

Check warning on line 47 in src/uu/date/Cargo.toml

View workflow job for this annotation

GitHub Actions / Style/spelling (ubuntu-latest, feat_os_unix)

WARNING: `cspell`: Unknown word 'ohos' (file:'src/uu/date/Cargo.toml', line:47)
# OHOS has no /usr/share/zoneinfo or /etc/localtime: embed IANA tzdata so

Check warning on line 48 in src/uu/date/Cargo.toml

View workflow job for this annotation

GitHub Actions / Style/spelling (ubuntu-latest, feat_os_unix)

WARNING: `cspell`: Unknown word 'tzdata' (file:'src/uu/date/Cargo.toml', line:48)

Check warning on line 48 in src/uu/date/Cargo.toml

View workflow job for this annotation

GitHub Actions / Style/spelling (ubuntu-latest, feat_os_unix)

WARNING: `cspell`: Unknown word 'OHOS' (file:'src/uu/date/Cargo.toml', line:48)
# ohos_system_zone() can resolve the TimeService timezone ID directly (pass-through,

Check warning on line 49 in src/uu/date/Cargo.toml

View workflow job for this annotation

GitHub Actions / Style/spelling (ubuntu-latest, feat_os_unix)

WARNING: `cspell`: Unknown word 'ohos' (file:'src/uu/date/Cargo.toml', line:49)
# no environment injection).
jiff-tzdb = "0.1"
jiff-tzdb = { workspace = true }

[target.'cfg(windows)'.dependencies]
windows-sys = { workspace = true, features = [
Expand Down
Loading