1
Fork 0

Rollup merge of #118943 - lqd:update-deps2, r=michaelwoerister

update `measureme` to 10.1.2 to deduplicate `parking_lot`

This PR updates `measureme` to the latest release to remove the last duplicates of `parking_lot` 0.11 we had in our dependency tree.

```console
Updating measureme v10.1.1 -> v10.1.2
Removing parking_lot v0.11.2
Removing parking_lot_core v0.8.6
```

Also removes `instant` from the allowed list of dependencies, as it's no longer used.

r? `@michaelwoerister` (Thanks for the release in the first place 🙏)
This commit is contained in:
Jubilee 2023-12-14 16:07:48 -08:00 committed by GitHub
commit b62511fd9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 35 deletions

View file

@ -548,7 +548,7 @@ dependencies = [
"futures", "futures",
"if_chain", "if_chain",
"itertools", "itertools",
"parking_lot 0.12.1", "parking_lot",
"quote", "quote",
"regex", "regex",
"rustc_tools_util", "rustc_tools_util",
@ -2356,13 +2356,13 @@ dependencies = [
[[package]] [[package]]
name = "measureme" name = "measureme"
version = "10.1.1" version = "10.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1930d162935fecd56fc4e0f6729eb3483bac1264542eb4ea31570b86a434b6bc" checksum = "45e381dcdad44c3c435f8052b08c5c4a1449c48ab56f312345eae12d7a693dbe"
dependencies = [ dependencies = [
"log", "log",
"memmap2", "memmap2",
"parking_lot 0.11.2", "parking_lot",
"perf-event-open-sys", "perf-event-open-sys",
"rustc-hash", "rustc-hash",
"smallvec", "smallvec",
@ -2780,17 +2780,6 @@ dependencies = [
"unicode-width", "unicode-width",
] ]
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core 0.8.6",
]
[[package]] [[package]]
name = "parking_lot" name = "parking_lot"
version = "0.12.1" version = "0.12.1"
@ -2798,21 +2787,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [ dependencies = [
"lock_api", "lock_api",
"parking_lot_core 0.9.8", "parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
dependencies = [
"cfg-if",
"instant",
"libc",
"redox_syscall 0.2.16",
"smallvec",
"winapi",
] ]
[[package]] [[package]]
@ -3682,7 +3657,7 @@ dependencies = [
"libc", "libc",
"measureme", "measureme",
"memmap2", "memmap2",
"parking_lot 0.12.1", "parking_lot",
"portable-atomic", "portable-atomic",
"rustc-hash", "rustc-hash",
"rustc-rayon", "rustc-rayon",
@ -4417,7 +4392,7 @@ dependencies = [
name = "rustc_query_system" name = "rustc_query_system"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"parking_lot 0.12.1", "parking_lot",
"rustc-rayon-core", "rustc-rayon-core",
"rustc_ast", "rustc_ast",
"rustc_data_structures", "rustc_data_structures",
@ -5134,7 +5109,7 @@ checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
dependencies = [ dependencies = [
"new_debug_unreachable", "new_debug_unreachable",
"once_cell", "once_cell",
"parking_lot 0.12.1", "parking_lot",
"phf_shared", "phf_shared",
"precomputed-hash", "precomputed-hash",
"serde", "serde",
@ -5659,7 +5634,7 @@ dependencies = [
"matchers", "matchers",
"nu-ansi-term", "nu-ansi-term",
"once_cell", "once_cell",
"parking_lot 0.12.1", "parking_lot",
"regex", "regex",
"sharded-slab", "sharded-slab",
"smallvec", "smallvec",

View file

@ -254,7 +254,6 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
"icu_provider_macros", "icu_provider_macros",
"ident_case", "ident_case",
"indexmap", "indexmap",
"instant",
"intl-memoizer", "intl-memoizer",
"intl_pluralrules", "intl_pluralrules",
"is-terminal", "is-terminal",