Skip to content

Commit 4bd8088

Browse files
committed
bump ipc-channel
1 parent bb79e79 commit 4bd8088

File tree

2 files changed

+8
-40
lines changed

2 files changed

+8
-40
lines changed

src/tools/miri/Cargo.lock

Lines changed: 7 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -441,17 +441,16 @@ dependencies = [
441441

442442
[[package]]
443443
name = "ipc-channel"
444-
version = "0.19.0"
444+
version = "0.20.0"
445445
source = "registry+https://github.com/rust-lang/crates.io-index"
446-
checksum = "6fb8251fb7bcd9ccd3725ed8deae9fe7db8e586495c9eb5b0c52e6233e5e75ea"
446+
checksum = "5b1c98b70019c830a1fc39cecfe1f60ff99c4122f0a189697c810c90ec545c14"
447447
dependencies = [
448448
"bincode",
449449
"crossbeam-channel",
450450
"fnv",
451-
"lazy_static",
452451
"libc",
453452
"mio",
454-
"rand 0.8.5",
453+
"rand",
455454
"serde",
456455
"tempfile",
457456
"uuid",
@@ -598,7 +597,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
598597
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
599598
dependencies = [
600599
"libc",
601-
"log",
602600
"wasi 0.11.1+wasi-snapshot-preview1",
603601
"windows-sys 0.59.0",
604602
]
@@ -621,7 +619,7 @@ dependencies = [
621619
"libloading",
622620
"measureme",
623621
"nix",
624-
"rand 0.9.1",
622+
"rand",
625623
"regex",
626624
"rustc_version",
627625
"serde",
@@ -806,35 +804,14 @@ version = "5.3.0"
806804
source = "registry+https://github.com/rust-lang/crates.io-index"
807805
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
808806

809-
[[package]]
810-
name = "rand"
811-
version = "0.8.5"
812-
source = "registry+https://github.com/rust-lang/crates.io-index"
813-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
814-
dependencies = [
815-
"libc",
816-
"rand_chacha 0.3.1",
817-
"rand_core 0.6.4",
818-
]
819-
820807
[[package]]
821808
name = "rand"
822809
version = "0.9.1"
823810
source = "registry+https://github.com/rust-lang/crates.io-index"
824811
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
825812
dependencies = [
826-
"rand_chacha 0.9.0",
827-
"rand_core 0.9.3",
828-
]
829-
830-
[[package]]
831-
name = "rand_chacha"
832-
version = "0.3.1"
833-
source = "registry+https://github.com/rust-lang/crates.io-index"
834-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
835-
dependencies = [
836-
"ppv-lite86",
837-
"rand_core 0.6.4",
813+
"rand_chacha",
814+
"rand_core",
838815
]
839816

840817
[[package]]
@@ -844,16 +821,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
844821
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
845822
dependencies = [
846823
"ppv-lite86",
847-
"rand_core 0.9.3",
848-
]
849-
850-
[[package]]
851-
name = "rand_core"
852-
version = "0.6.4"
853-
source = "registry+https://github.com/rust-lang/crates.io-index"
854-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
855-
dependencies = [
856-
"getrandom 0.2.16",
824+
"rand_core",
857825
]
858826

859827
[[package]]

src/tools/miri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ serde = { version = "1.0.219", features = ["derive"], optional = true }
4545

4646
[target.'cfg(target_os = "linux")'.dependencies]
4747
nix = { version = "0.30.1", features = ["mman", "ptrace", "signal"], optional = true }
48-
ipc-channel = { version = "0.19.0", optional = true }
48+
ipc-channel = { version = "0.20.0", optional = true }
4949
capstone = { version = "0.13", optional = true }
5050

5151
[dev-dependencies]

0 commit comments

Comments
 (0)