Update rustc-hash to version 2

This brings in the new algorithm.
This commit is contained in:
Noratrieb 2024-08-25 00:31:10 +02:00 committed by Jubilee Young
parent d68c327796
commit 4348383a0f
6 changed files with 10 additions and 10 deletions

View File

@ -1907,7 +1907,7 @@ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
"fs-err", "fs-err",
"rustc-hash 1.1.0", "rustc-hash 2.0.0",
"rustdoc-json-types", "rustdoc-json-types",
"serde", "serde",
"serde_json", "serde_json",
@ -3514,7 +3514,7 @@ dependencies = [
"memmap2", "memmap2",
"parking_lot", "parking_lot",
"portable-atomic", "portable-atomic",
"rustc-hash 1.1.0", "rustc-hash 2.0.0",
"rustc-rayon", "rustc-rayon",
"rustc-stable-hash", "rustc-stable-hash",
"rustc_arena", "rustc_arena",
@ -4211,7 +4211,7 @@ dependencies = [
name = "rustc_pattern_analysis" name = "rustc_pattern_analysis"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"rustc-hash 1.1.0", "rustc-hash 2.0.0",
"rustc_apfloat", "rustc_apfloat",
"rustc_arena", "rustc_arena",
"rustc_data_structures", "rustc_data_structures",
@ -4609,7 +4609,7 @@ name = "rustdoc-json-types"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"bincode", "bincode",
"rustc-hash 1.1.0", "rustc-hash 2.0.0",
"serde", "serde",
"serde_json", "serde_json",
] ]
@ -5239,7 +5239,7 @@ dependencies = [
"ignore", "ignore",
"miropt-test-tools", "miropt-test-tools",
"regex", "regex",
"rustc-hash 1.1.0", "rustc-hash 2.0.0",
"semver", "semver",
"similar", "similar",
"termcolor", "termcolor",

View File

@ -13,7 +13,7 @@ ena = "0.14.3"
indexmap = { version = "2.4.0" } indexmap = { version = "2.4.0" }
jobserver_crate = { version = "0.1.28", package = "jobserver" } jobserver_crate = { version = "0.1.28", package = "jobserver" }
measureme = "11" measureme = "11"
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
rustc-rayon = { version = "0.5.0", optional = true } rustc-rayon = { version = "0.5.0", optional = true }
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] } rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
rustc_arena = { path = "../rustc_arena" } rustc_arena = { path = "../rustc_arena" }

View File

@ -5,7 +5,7 @@ edition = "2021"
[dependencies] [dependencies]
# tidy-alphabetical-start # tidy-alphabetical-start
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
rustc_apfloat = "0.2.0" rustc_apfloat = "0.2.0"
rustc_arena = { path = "../rustc_arena", optional = true } rustc_arena = { path = "../rustc_arena", optional = true }
rustc_data_structures = { path = "../rustc_data_structures", optional = true } rustc_data_structures = { path = "../rustc_data_structures", optional = true }

View File

@ -11,7 +11,7 @@ default = ["rustc-hash"]
[dependencies] [dependencies]
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
rustc-hash = { version = "1.1.0", optional = true } rustc-hash = { version = "2.0", optional = true }
[dev-dependencies] [dev-dependencies]
serde_json = "1.0" serde_json = "1.0"

View File

@ -9,7 +9,7 @@ edition = "2021"
anyhow = "1.0.62" anyhow = "1.0.62"
clap = { version = "4.0.15", features = ["derive"] } clap = { version = "4.0.15", features = ["derive"] }
fs-err = "2.8.1" fs-err = "2.8.1"
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
rustdoc-json-types = { version = "0.1.0", path = "../../rustdoc-json-types" } rustdoc-json-types = { version = "0.1.0", path = "../../rustdoc-json-types" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.85" serde_json = "1.0.85"

View File

@ -13,7 +13,7 @@ walkdir = "2"
ignore = "0.4.18" ignore = "0.4.18"
semver = "1.0" semver = "1.0"
termcolor = "1.1.3" termcolor = "1.1.3"
rustc-hash = "1.1.0" rustc-hash = "2.0.0"
fluent-syntax = "0.11.1" fluent-syntax = "0.11.1"
similar = "2.5.0" similar = "2.5.0"