Auto merge of #99034 - RalfJung:miri, r=Mark-Simulacrum

update Miri

Fixes https://github.com/rust-lang/rust/issues/98922
r? `@ghost`
This commit is contained in:
bors 2022-07-08 20:36:33 +00:00
commit 06754d8852
3 changed files with 4 additions and 1 deletions

View file

@ -3480,6 +3480,7 @@ dependencies = [
"proc-macro2",
"quote",
"rand_core 0.5.1",
"regex",
"serde",
"serde_json",
"smallvec",

@ -1 +1 @@
Subproject commit f76ebd6feb9f59be993336f84ecfdc441ad33d81
Subproject commit cde87d18239b8d9afa9c6bf1051bf5573dbf326e

View file

@ -79,6 +79,8 @@ crossbeam-utils = { version = "0.8.0", features = ["nightly"] }
libc = { version = "0.2.79", features = ["align"] }
# Ensure default features of libz-sys, which are disabled in some scenarios.
libz-sys = { version = "1.1.2" }
# same for regex
regex = { version = "1.5.5" }
proc-macro2 = { version = "1", features = ["default"] }
quote = { version = "1", features = ["default"] }
rand_core_0_5 = { package = "rand_core", version = "0.5.1", features = ["getrandom", "alloc", "std"] }