Skip to content

Commit 12c88e9

Browse files
committed
Fix the build with -Zdirect-minimal-versions
1 parent 2ca1a10 commit 12c88e9

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
@@ -388,7 +388,7 @@ version = "0.8.0"
388388

389389
[workspace.dependencies]
390390
ansi-width = "0.1.0"
391-
bigdecimal = "0.4"
391+
bigdecimal = "0.4.9"
392392
binary-heap-plus = "0.5.0"
393393
bstr = "1.9.1"
394394
bytecount = "0.6.8"
@@ -409,15 +409,15 @@ foldhash = "0.2.0"
409409
fs_extra = "1.3.0"
410410
fts-sys = "0.2.16"
411411
gcd = "2.3"
412-
glob = "0.3.1"
412+
glob = "0.3.2"
413413
half = "2.4.1"
414414
hostname = "0.4"
415-
icu_calendar = { version = "2.0.0", default-features = false }
416-
icu_collator = { version = "2.0.0", default-features = false }
417-
icu_datetime = { version = "2.0.0", default-features = false }
418-
icu_decimal = { version = "2.0.0", default-features = false }
419-
icu_locale = { version = "2.0.0", default-features = false }
420-
icu_provider = { version = "2.0.0", default-features = false }
415+
icu_calendar = { version = "2.1.0", default-features = false }
416+
icu_collator = { version = "2.1.0", default-features = false }
417+
icu_datetime = { version = "2.1.0", default-features = false }
418+
icu_decimal = { version = "2.1.0", default-features = false }
419+
icu_locale = { version = "2.1.0", default-features = false }
420+
icu_provider = { version = "2.1.0", default-features = false }
421421
indicatif = "0.18.0"
422422
itertools = "0.14.0"
423423
itoa = "1.0.15"
@@ -433,7 +433,7 @@ memmap2 = "0.9.4"
433433
nix = { version = "0.31.2", default-features = false }
434434
nom = "8.0.0"
435435
notify = { version = "=8.2.0", features = ["macos_kqueue"] }
436-
num-bigint = "0.4.4"
436+
num-bigint = "0.4.6"
437437
num-prime = "0.5.0"
438438
num-traits = "0.2.19"
439439
onig = { version = "~6.5.1", default-features = false }
@@ -446,7 +446,7 @@ procfs = "0.18"
446446
rand = { version = "0.10.0", features = ["std_rng"] }
447447
rand_chacha = { version = "0.10.0" }
448448
rayon = "1.10"
449-
regex = "1.10.4"
449+
regex = "1.11.3"
450450
rlimit = "0.11.0"
451451
rstest = "0.26.0"
452452
rstest_reuse = "0.7.0"
@@ -456,16 +456,16 @@ rust-ini = "0.21.0"
456456
# So we use param and avoid libc backend
457457
rustix = { version = "1.1.4", features = ["param"] }
458458
same-file = "1.0.6"
459-
self_cell = "1.0.4"
459+
self_cell = "1.2.0"
460460
selinux = "=0.6.1"
461461
string-interner = "0.19.0"
462-
tempfile = "3.15.0"
462+
tempfile = "3.20.0"
463463
terminal_size = "0.4.0"
464464
textwrap = { version = "0.16.1", features = ["terminal_size"] }
465465
thiserror = "2.0.3"
466466
time = { version = "0.3.36" }
467467
unicode-width = "0.2.0"
468-
unit-prefix = "0.5"
468+
unit-prefix = "0.5.1"
469469
utmp-classic = "0.1.6"
470470
uutils_term_grid = "0.8"
471471
walkdir = "2.5"
@@ -482,7 +482,7 @@ sha3 = "0.10.8"
482482
blake2b_simd = "1.0.2"
483483
blake3 = "1.5.1"
484484
sm3 = "0.5.0"
485-
crc-fast = { version = "1.5.0", default-features = false }
485+
crc-fast = { version = "1.7.0", default-features = false }
486486
digest = "0.10.7"
487487

488488
# Fluent dependencies

fuzz/uufuzz/Cargo.toml

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

1111
[dependencies]
1212
console = "0.16.0"
13-
libc = "0.2.153"
13+
libc = "0.2.182"
1414
rand = { version = "0.9.0", features = ["small_rng"] }
1515
similar = "3.0.0"
1616
uucore = { version = "0.8.0", path = "../../src/uucore", features = ["parser"] }
17-
tempfile = "3.15.0"
17+
tempfile = "3.20.0"

src/uucore_procs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ version.workspace = true
1515
proc-macro = true
1616

1717
[dependencies]
18-
proc-macro2 = "1.0.81"
19-
quote = "1.0.36"
18+
proc-macro2 = "1.0.93"
19+
quote = "1.0.38"

0 commit comments

Comments
 (0)