use measureme-12.0.1
This commit is contained in:
parent
6324b39873
commit
7279acf202
4 changed files with 9 additions and 12 deletions
12
Cargo.lock
12
Cargo.lock
|
@ -2179,10 +2179,10 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "measureme-mirror"
|
name = "measureme"
|
||||||
version = "12.0.1"
|
version = "12.0.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "fe110855993552cfa51a5018e8cdf2acf7f948c46136322017a9a8484ffc5ea8"
|
checksum = "570a507d8948a66a97f42cbbaf8a6bb9516a51017d4ee949502ad7a10a864395"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"log",
|
"log",
|
||||||
"memmap2",
|
"memmap2",
|
||||||
|
@ -2275,7 +2275,7 @@ dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"libffi",
|
"libffi",
|
||||||
"libloading",
|
"libloading",
|
||||||
"measureme",
|
"measureme 11.0.1",
|
||||||
"rand 0.9.0",
|
"rand 0.9.0",
|
||||||
"regex",
|
"regex",
|
||||||
"rustc_version",
|
"rustc_version",
|
||||||
|
@ -3379,7 +3379,7 @@ dependencies = [
|
||||||
"gimli 0.30.0",
|
"gimli 0.30.0",
|
||||||
"itertools",
|
"itertools",
|
||||||
"libc",
|
"libc",
|
||||||
"measureme-mirror",
|
"measureme 12.0.1",
|
||||||
"object 0.36.7",
|
"object 0.36.7",
|
||||||
"rustc-demangle",
|
"rustc-demangle",
|
||||||
"rustc_abi",
|
"rustc_abi",
|
||||||
|
@ -3497,7 +3497,7 @@ dependencies = [
|
||||||
"indexmap",
|
"indexmap",
|
||||||
"jobserver",
|
"jobserver",
|
||||||
"libc",
|
"libc",
|
||||||
"measureme-mirror",
|
"measureme 12.0.1",
|
||||||
"memmap2",
|
"memmap2",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"portable-atomic",
|
"portable-atomic",
|
||||||
|
@ -4263,7 +4263,7 @@ dependencies = [
|
||||||
name = "rustc_query_impl"
|
name = "rustc_query_impl"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"measureme-mirror",
|
"measureme 12.0.1",
|
||||||
"rustc_data_structures",
|
"rustc_data_structures",
|
||||||
"rustc_errors",
|
"rustc_errors",
|
||||||
"rustc_hashes",
|
"rustc_hashes",
|
||||||
|
|
|
@ -14,8 +14,7 @@ bitflags = "2.4.1"
|
||||||
gimli = "0.30"
|
gimli = "0.30"
|
||||||
itertools = "0.12"
|
itertools = "0.12"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
# FIXME: waiting for the new version of measureme. (https://github.com/rust-lang/measureme/pull/240)
|
measureme = "12.0.1"
|
||||||
measureme = { package = "measureme-mirror", version = "12.0.1" }
|
|
||||||
object = { version = "0.36.3", default-features = false, features = ["std", "read"] }
|
object = { version = "0.36.3", default-features = false, features = ["std", "read"] }
|
||||||
rustc-demangle = "0.1.21"
|
rustc-demangle = "0.1.21"
|
||||||
rustc_abi = { path = "../rustc_abi" }
|
rustc_abi = { path = "../rustc_abi" }
|
||||||
|
|
|
@ -12,8 +12,7 @@ elsa = "1.11.0"
|
||||||
ena = "0.14.3"
|
ena = "0.14.3"
|
||||||
indexmap = "2.4.0"
|
indexmap = "2.4.0"
|
||||||
jobserver_crate = { version = "0.1.28", package = "jobserver" }
|
jobserver_crate = { version = "0.1.28", package = "jobserver" }
|
||||||
# FIXME: waiting for the new version of measureme. (https://github.com/rust-lang/measureme/pull/240)
|
measureme = "12.0.1"
|
||||||
measureme = { package = "measureme-mirror", version = "12.0.1" }
|
|
||||||
rustc-hash = "2.0.0"
|
rustc-hash = "2.0.0"
|
||||||
rustc-rayon = { version = "0.5.1", features = ["indexmap"] }
|
rustc-rayon = { version = "0.5.1", features = ["indexmap"] }
|
||||||
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
|
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
|
||||||
|
|
|
@ -5,8 +5,7 @@ edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# tidy-alphabetical-start
|
# tidy-alphabetical-start
|
||||||
# FIXME: waiting for the new version of measureme. (https://github.com/rust-lang/measureme/pull/240)
|
measureme = "12.0.1"
|
||||||
measureme = { package = "measureme-mirror", version = "12.0.1" }
|
|
||||||
rustc_data_structures = { path = "../rustc_data_structures" }
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
||||||
rustc_errors = { path = "../rustc_errors" }
|
rustc_errors = { path = "../rustc_errors" }
|
||||||
rustc_hashes = { path = "../rustc_hashes" }
|
rustc_hashes = { path = "../rustc_hashes" }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue