Skip to content

Commit 61a6f07

Browse files
committed
another test of zoxc's hash to see if things have changed
1 parent 96aeed8 commit 61a6f07

File tree

10 files changed

+44
-34
lines changed

10 files changed

+44
-34
lines changed

Cargo.lock

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ dependencies = [
19821982
"anyhow",
19831983
"clap",
19841984
"fs-err",
1985-
"rustc-hash 2.1.0",
1985+
"rustc-hash 1.0.1",
19861986
"rustdoc-json-types",
19871987
"serde",
19881988
"serde_json",
@@ -3207,6 +3207,11 @@ version = "0.1.24"
32073207
source = "registry+https://github.com/rust-lang/crates.io-index"
32083208
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
32093209

3210+
[[package]]
3211+
name = "rustc-hash"
3212+
version = "1.0.1"
3213+
source = "git+https://github.com/Zoxc/rustc-hash/?branch=new-hash#a5a1e17e92967bb98ff8513d25a9bc07bf12caca"
3214+
32103215
[[package]]
32113216
name = "rustc-hash"
32123217
version = "1.1.0"
@@ -3621,7 +3626,7 @@ dependencies = [
36213626
"memmap2",
36223627
"parking_lot",
36233628
"portable-atomic",
3624-
"rustc-hash 2.1.0",
3629+
"rustc-hash 1.0.1",
36253630
"rustc-rayon",
36263631
"rustc-stable-hash",
36273632
"rustc_arena",
@@ -4324,7 +4329,7 @@ dependencies = [
43244329
name = "rustc_pattern_analysis"
43254330
version = "0.0.0"
43264331
dependencies = [
4327-
"rustc-hash 2.1.0",
4332+
"rustc-hash 1.0.1",
43284333
"rustc_abi",
43294334
"rustc_apfloat",
43304335
"rustc_arena",
@@ -4647,7 +4652,7 @@ dependencies = [
46474652
"bitflags",
46484653
"derive-where",
46494654
"indexmap",
4650-
"rustc-hash 1.1.0",
4655+
"rustc-hash 1.0.1",
46514656
"rustc_ast_ir",
46524657
"rustc_data_structures",
46534658
"rustc_index",
@@ -4720,7 +4725,7 @@ name = "rustdoc-json-types"
47204725
version = "0.1.0"
47214726
dependencies = [
47224727
"bincode",
4723-
"rustc-hash 2.1.0",
4728+
"rustc-hash 1.0.1",
47244729
"serde",
47254730
"serde_json",
47264731
]
@@ -5371,7 +5376,7 @@ dependencies = [
53715376
"ignore",
53725377
"miropt-test-tools",
53735378
"regex",
5374-
"rustc-hash 2.1.0",
5379+
"rustc-hash 1.0.1",
53755380
"semver",
53765381
"similar",
53775382
"termcolor",

compiler/rustc_data_structures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ena = "0.14.3"
1313
indexmap = { version = "2.4.0", features = ["rustc-rayon"] }
1414
jobserver_crate = { version = "0.1.28", package = "jobserver" }
1515
measureme = "11"
16-
rustc-hash = "2.0.0"
16+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
1717
rustc-rayon = "0.5.0"
1818
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
1919
rustc_arena = { path = "../rustc_arena" }

compiler/rustc_pattern_analysis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
rustc-hash = "2.0.0"
8+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
99

1010
rustc_abi = { path = "../rustc_abi", optional = true }
1111
rustc_apfloat = "0.2.0"

compiler/rustc_type_ir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
bitflags = "2.4.1"
99
derive-where = "1.2.7"
1010
indexmap = "2.0.0"
11-
rustc-hash = "1.1.0"
11+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
1212
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
1313
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
1414
rustc_index = { path = "../rustc_index", default-features = false }

src/rustdoc-json-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ default = ["rustc-hash"]
1111

1212
[dependencies]
1313
serde = { version = "1.0", features = ["derive"] }
14-
rustc-hash = { version = "2.0", optional = true }
14+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash", optional = true }
1515

1616
[dev-dependencies]
1717
serde_json = "1.0"

src/tools/jsondoclint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
anyhow = "1.0.62"
1010
clap = { version = "4.0.15", features = ["derive"] }
1111
fs-err = "2.8.1"
12-
rustc-hash = "2.0.0"
12+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
1313
rustdoc-json-types = { version = "0.1.0", path = "../../rustdoc-json-types" }
1414
serde = { version = "1.0", features = ["derive"] }
1515
serde_json = "1.0.85"

src/tools/rust-analyzer/Cargo.lock

Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies = [
7373
"intern",
7474
"la-arena 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
7575
"lz4_flex",
76-
"rustc-hash 2.0.0",
76+
"rustc-hash 1.0.1",
7777
"salsa",
7878
"semver",
7979
"span",
@@ -167,7 +167,7 @@ dependencies = [
167167
"expect-test",
168168
"intern",
169169
"oorandom",
170-
"rustc-hash 2.0.0",
170+
"rustc-hash 1.0.1",
171171
"syntax",
172172
"syntax-bridge",
173173
"tracing",
@@ -526,7 +526,7 @@ dependencies = [
526526
"indexmap",
527527
"intern",
528528
"itertools",
529-
"rustc-hash 2.0.0",
529+
"rustc-hash 1.0.1",
530530
"smallvec",
531531
"span",
532532
"stdx",
@@ -563,7 +563,7 @@ dependencies = [
563563
"mbe",
564564
"ra-ap-rustc_abi",
565565
"ra-ap-rustc_parse_format",
566-
"rustc-hash 2.0.0",
566+
"rustc-hash 1.0.1",
567567
"rustc_apfloat",
568568
"smallvec",
569569
"span",
@@ -594,7 +594,7 @@ dependencies = [
594594
"limit",
595595
"mbe",
596596
"parser",
597-
"rustc-hash 2.0.0",
597+
"rustc-hash 1.0.1",
598598
"smallvec",
599599
"span",
600600
"stdx",
@@ -633,7 +633,7 @@ dependencies = [
633633
"ra-ap-rustc_abi",
634634
"ra-ap-rustc_index",
635635
"ra-ap-rustc_pattern_analysis",
636-
"rustc-hash 2.0.0",
636+
"rustc-hash 1.0.1",
637637
"rustc_apfloat",
638638
"scoped-tls",
639639
"smallvec",
@@ -751,7 +751,7 @@ dependencies = [
751751
"parser",
752752
"profile",
753753
"rayon",
754-
"rustc-hash 2.0.0",
754+
"rustc-hash 1.0.1",
755755
"span",
756756
"stdx",
757757
"syntax",
@@ -845,7 +845,7 @@ version = "0.0.0"
845845
dependencies = [
846846
"dashmap",
847847
"hashbrown",
848-
"rustc-hash 2.0.0",
848+
"rustc-hash 1.0.1",
849849
"sptr",
850850
"triomphe",
851851
]
@@ -1063,7 +1063,7 @@ dependencies = [
10631063
"intern",
10641064
"parser",
10651065
"ra-ap-rustc_lexer",
1066-
"rustc-hash 2.0.0",
1066+
"rustc-hash 1.0.1",
10671067
"smallvec",
10681068
"span",
10691069
"stdx",
@@ -1362,7 +1362,7 @@ dependencies = [
13621362
"indexmap",
13631363
"intern",
13641364
"paths",
1365-
"rustc-hash 2.0.0",
1365+
"rustc-hash 1.0.1",
13661366
"serde",
13671367
"serde_derive",
13681368
"serde_json",
@@ -1452,7 +1452,7 @@ dependencies = [
14521452
"itertools",
14531453
"la-arena 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
14541454
"paths",
1455-
"rustc-hash 2.0.0",
1455+
"rustc-hash 1.0.1",
14561456
"semver",
14571457
"serde",
14581458
"serde_derive",
@@ -1699,7 +1699,7 @@ dependencies = [
16991699
"profile",
17001700
"project-model",
17011701
"rayon",
1702-
"rustc-hash 2.0.0",
1702+
"rustc-hash 1.0.1",
17031703
"scip",
17041704
"semver",
17051705
"serde",
@@ -1732,6 +1732,11 @@ version = "0.1.24"
17321732
source = "registry+https://github.com/rust-lang/crates.io-index"
17331733
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
17341734

1735+
[[package]]
1736+
name = "rustc-hash"
1737+
version = "1.0.1"
1738+
source = "git+https://github.com/Zoxc/rustc-hash/?branch=new-hash#a5a1e17e92967bb98ff8513d25a9bc07bf12caca"
1739+
17351740
[[package]]
17361741
name = "rustc-hash"
17371742
version = "1.1.0"
@@ -1773,7 +1778,7 @@ dependencies = [
17731778
"oorandom",
17741779
"parking_lot",
17751780
"rand",
1776-
"rustc-hash 2.0.0",
1781+
"rustc-hash 1.0.1",
17771782
"salsa-macros",
17781783
"smallvec",
17791784
"tracing",
@@ -1919,7 +1924,7 @@ version = "0.0.0"
19191924
dependencies = [
19201925
"hashbrown",
19211926
"la-arena 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
1922-
"rustc-hash 2.0.0",
1927+
"rustc-hash 1.0.1",
19231928
"salsa",
19241929
"stdx",
19251930
"syntax",
@@ -1982,7 +1987,7 @@ dependencies = [
19821987
"ra-ap-rustc_lexer",
19831988
"rayon",
19841989
"rowan",
1985-
"rustc-hash 2.0.0",
1990+
"rustc-hash 1.0.1",
19861991
"rustc_apfloat",
19871992
"smol_str",
19881993
"stdx",
@@ -1997,7 +2002,7 @@ version = "0.0.0"
19972002
dependencies = [
19982003
"intern",
19992004
"parser",
2000-
"rustc-hash 2.0.0",
2005+
"rustc-hash 1.0.1",
20012006
"span",
20022007
"stdx",
20032008
"syntax",
@@ -2020,7 +2025,7 @@ dependencies = [
20202025
"cfg",
20212026
"hir-expand",
20222027
"intern",
2023-
"rustc-hash 2.0.0",
2028+
"rustc-hash 1.0.1",
20242029
"span",
20252030
"stdx",
20262031
"test-utils",
@@ -2034,7 +2039,7 @@ dependencies = [
20342039
"dissimilar",
20352040
"paths",
20362041
"profile",
2037-
"rustc-hash 2.0.0",
2042+
"rustc-hash 1.0.1",
20382043
"stdx",
20392044
"text-size",
20402045
"tracing",
@@ -2369,7 +2374,7 @@ dependencies = [
23692374
"indexmap",
23702375
"nohash-hasher",
23712376
"paths",
2372-
"rustc-hash 2.0.0",
2377+
"rustc-hash 1.0.1",
23732378
"stdx",
23742379
"tracing",
23752380
]
@@ -2382,7 +2387,7 @@ dependencies = [
23822387
"notify",
23832388
"paths",
23842389
"rayon",
2385-
"rustc-hash 2.0.0",
2390+
"rustc-hash 1.0.1",
23862391
"stdx",
23872392
"tracing",
23882393
"vfs",

src/tools/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ process-wrap = { version = "8.0.2", features = ["std"] }
136136
pulldown-cmark-to-cmark = "10.0.4"
137137
pulldown-cmark = { version = "0.9.0", default-features = false }
138138
rayon = "1.8.0"
139-
rustc-hash = "2.0.0"
139+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
140140
semver = "1.0.14"
141141
serde = { version = "1.0.192" }
142142
serde_derive = { version = "1.0.192" }

src/tools/rust-analyzer/crates/ra-salsa/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ indexmap = "2.1.0"
1717
lock_api = "0.4"
1818
tracing = "0.1"
1919
parking_lot = "0.12.1"
20-
rustc-hash = "2.0.0"
20+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
2121
smallvec = "1.0.0"
2222
oorandom = "11"
2323
triomphe.workspace = true

src/tools/tidy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ walkdir = "2"
1313
ignore = "0.4.18"
1414
semver = "1.0"
1515
termcolor = "1.1.3"
16-
rustc-hash = "2.0.0"
16+
rustc-hash = { git = "https://github.com/Zoxc/rustc-hash/", branch = "new-hash" }
1717
fluent-syntax = "0.11.1"
1818
similar = "2.5.0"
1919

0 commit comments

Comments
 (0)