Skip to content

Commit cdccba8

Browse files
committed
Auto merge of #144524 - rust-lang:cargo_update, r=clubby789
Weekly `cargo update` Automation to keep dependencies in `Cargo.lock` current. r? dep-bumps The following is the output from `cargo update`: ```txt compiler & tools dependencies: Locking 3 packages to latest compatible versions Updating ipc-channel v0.20.0 -> v0.20.1 Updating rand v0.9.1 -> v0.9.2 Updating redox_syscall v0.5.13 -> v0.5.16 note: pass `--verbose` to see 37 unchanged dependencies behind latest library dependencies: Locking 1 package to latest compatible version Updating rand v0.9.1 -> v0.9.2 note: pass `--verbose` to see 2 unchanged dependencies behind latest rustbook dependencies: Locking 1 package to latest compatible version Updating redox_syscall v0.5.13 -> v0.5.16 ```
2 parents 498ae9f + 75420b6 commit cdccba8

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1876,16 +1876,16 @@ dependencies = [
18761876

18771877
[[package]]
18781878
name = "ipc-channel"
1879-
version = "0.20.0"
1879+
version = "0.20.1"
18801880
source = "registry+https://github.com/rust-lang/crates.io-index"
1881-
checksum = "5b1c98b70019c830a1fc39cecfe1f60ff99c4122f0a189697c810c90ec545c14"
1881+
checksum = "1700f6b8b9f00cdd675f32fbb3a5be882213140dfe045805273221ca266c43f8"
18821882
dependencies = [
18831883
"bincode",
18841884
"crossbeam-channel",
18851885
"fnv",
18861886
"libc",
18871887
"mio",
1888-
"rand 0.9.1",
1888+
"rand 0.9.2",
18891889
"serde",
18901890
"tempfile",
18911891
"uuid",
@@ -2315,7 +2315,7 @@ dependencies = [
23152315
"libloading",
23162316
"measureme",
23172317
"nix",
2318-
"rand 0.9.1",
2318+
"rand 0.9.2",
23192319
"regex",
23202320
"rustc_version",
23212321
"serde",
@@ -2948,9 +2948,9 @@ dependencies = [
29482948

29492949
[[package]]
29502950
name = "rand"
2951-
version = "0.9.1"
2951+
version = "0.9.2"
29522952
source = "registry+https://github.com/rust-lang/crates.io-index"
2953-
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2953+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
29542954
dependencies = [
29552955
"rand_chacha 0.9.0",
29562956
"rand_core 0.9.3",
@@ -3034,9 +3034,9 @@ dependencies = [
30343034

30353035
[[package]]
30363036
name = "redox_syscall"
3037-
version = "0.5.13"
3037+
version = "0.5.16"
30383038
source = "registry+https://github.com/rust-lang/crates.io-index"
3039-
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
3039+
checksum = "7251471db004e509f4e75a62cca9435365b5ec7bcdff530d612ac7c87c44a792"
30403040
dependencies = [
30413041
"bitflags",
30423042
]
@@ -3231,7 +3231,7 @@ name = "rustc_abi"
32313231
version = "0.0.0"
32323232
dependencies = [
32333233
"bitflags",
3234-
"rand 0.9.1",
3234+
"rand 0.9.2",
32353235
"rand_xoshiro",
32363236
"rustc_data_structures",
32373237
"rustc_hashes",
@@ -3866,7 +3866,7 @@ dependencies = [
38663866
name = "rustc_incremental"
38673867
version = "0.0.0"
38683868
dependencies = [
3869-
"rand 0.9.1",
3869+
"rand 0.9.2",
38703870
"rustc_ast",
38713871
"rustc_data_structures",
38723872
"rustc_errors",
@@ -4479,7 +4479,7 @@ dependencies = [
44794479
"bitflags",
44804480
"getopts",
44814481
"libc",
4482-
"rand 0.9.1",
4482+
"rand 0.9.2",
44834483
"rustc_abi",
44844484
"rustc_ast",
44854485
"rustc_data_structures",
@@ -4564,7 +4564,7 @@ dependencies = [
45644564
"crossbeam-deque",
45654565
"crossbeam-utils",
45664566
"libc",
4567-
"rand 0.9.1",
4567+
"rand 0.9.2",
45684568
"rand_xorshift",
45694569
"scoped-tls",
45704570
"smallvec",
@@ -5270,7 +5270,7 @@ version = "0.1.0"
52705270
dependencies = [
52715271
"indicatif",
52725272
"num",
5273-
"rand 0.9.1",
5273+
"rand 0.9.2",
52745274
"rand_chacha 0.9.0",
52755275
"rayon",
52765276
]

library/Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ dependencies = [
237237

238238
[[package]]
239239
name = "rand"
240-
version = "0.9.1"
240+
version = "0.9.2"
241241
source = "registry+https://github.com/rust-lang/crates.io-index"
242-
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
242+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
243243
dependencies = [
244244
"rand_core",
245245
]

src/tools/rustbook/Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,9 +1343,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
13431343

13441344
[[package]]
13451345
name = "redox_syscall"
1346-
version = "0.5.13"
1346+
version = "0.5.16"
13471347
source = "registry+https://github.com/rust-lang/crates.io-index"
1348-
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
1348+
checksum = "7251471db004e509f4e75a62cca9435365b5ec7bcdff530d612ac7c87c44a792"
13491349
dependencies = [
13501350
"bitflags 2.9.1",
13511351
]

0 commit comments

Comments
 (0)