Skip to content

Commit 9a6e4f5

Browse files
committed
Fix the build with -Zdirect-minimal-versions
1 parent 4e68e67 commit 9a6e4f5

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ version = "0.8.0"
386386

387387
[workspace.dependencies]
388388
ansi-width = "0.1.0"
389-
bigdecimal = "0.4"
389+
bigdecimal = "0.4.9"
390390
binary-heap-plus = "0.5.0"
391391
bstr = "1.9.1"
392392
bytecount = "0.6.8"
@@ -407,15 +407,15 @@ foldhash = "0.2.0"
407407
fs_extra = "1.3.0"
408408
fts-sys = "0.2.16"
409409
gcd = "2.3"
410-
glob = "0.3.1"
410+
glob = "0.3.2"
411411
half = "2.4.1"
412412
hostname = "0.4"
413-
icu_calendar = { version = "2.0.0", default-features = false }
414-
icu_collator = { version = "2.0.0", default-features = false }
415-
icu_datetime = { version = "2.0.0", default-features = false }
416-
icu_decimal = { version = "2.0.0", default-features = false }
417-
icu_locale = { version = "2.0.0", default-features = false }
418-
icu_provider = { version = "2.0.0", default-features = false }
413+
icu_calendar = { version = "2.1.0", default-features = false }
414+
icu_collator = { version = "2.1.0", default-features = false }
415+
icu_datetime = { version = "2.1.0", default-features = false }
416+
icu_decimal = { version = "2.1.0", default-features = false }
417+
icu_locale = { version = "2.1.0", default-features = false }
418+
icu_provider = { version = "2.1.0", default-features = false }
419419
indicatif = "0.18.0"
420420
itertools = "0.14.0"
421421
itoa = "1.0.15"
@@ -431,7 +431,7 @@ memmap2 = "0.9.4"
431431
nix = { version = "0.31.2", default-features = false }
432432
nom = "8.0.0"
433433
notify = { version = "=8.2.0", features = ["macos_kqueue"] }
434-
num-bigint = "0.4.4"
434+
num-bigint = "0.4.6"
435435
num-prime = "0.5.0"
436436
num-traits = "0.2.19"
437437
onig = { version = "~6.5.1", default-features = false }
@@ -444,7 +444,7 @@ procfs = "0.18"
444444
rand = { version = "0.10.1", features = ["std_rng"] }
445445
rand_chacha = { version = "0.10.0" }
446446
rayon = "1.10"
447-
regex = "1.10.4"
447+
regex = "1.11.3"
448448
rlimit = "0.11.0"
449449
rstest = "0.26.0"
450450
rstest_reuse = "0.7.0"
@@ -454,16 +454,16 @@ rust-ini = "0.21.0"
454454
# So we use param and avoid libc backend
455455
rustix = { version = "1.1.4", features = ["param"] }
456456
same-file = "1.0.6"
457-
self_cell = "1.0.4"
457+
self_cell = "1.2.0"
458458
selinux = "0.6"
459459
string-interner = "0.19.0"
460-
tempfile = "3.15.0"
460+
tempfile = "3.20.0"
461461
terminal_size = "0.4.0"
462462
textwrap = { version = "0.16.1", features = ["terminal_size"] }
463463
thiserror = "2.0.3"
464464
time = { version = "0.3.36" }
465465
unicode-width = "0.2.0"
466-
unit-prefix = "0.5"
466+
unit-prefix = "0.5.1"
467467
utmp-classic = "0.1.6"
468468
uutils_term_grid = "0.8"
469469
walkdir = "2.5"
@@ -480,7 +480,7 @@ sha3 = "0.10.8"
480480
blake2b_simd = "1.0.2"
481481
blake3 = "1.5.1"
482482
sm3 = "0.5.0"
483-
crc-fast = { version = "1.5.0", default-features = false }
483+
crc-fast = { version = "1.7.0", default-features = false }
484484
digest = "0.10.7"
485485

486486
# Fluent dependencies

fuzz/uufuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ license.workspace = true
99

1010
[dependencies]
1111
console = "0.16.0"
12-
libc = "0.2.153"
12+
libc = "0.2.182"
1313
rand = { version = "0.10.1", features = ["std_rng"] }
1414
similar = "3.0.0"
1515
uucore = { version = "0.8.0", path = "../../src/uucore", features = ["parser"] }
16-
tempfile = "3.15.0"
16+
tempfile = "3.20.0"

src/uucore_procs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ test = false
1616
doctest = false
1717

1818
[dependencies]
19-
proc-macro2 = "1.0.81"
20-
quote = "1.0.36"
19+
proc-macro2 = "1.0.93"
20+
quote = "1.0.38"

0 commit comments

Comments
 (0)