Skip to content

Commit 5621a9a

Browse files
update wasmparser
1 parent d5e30de commit 5621a9a

File tree

2 files changed

+9
-33
lines changed

2 files changed

+9
-33
lines changed

Cargo.lock

Lines changed: 8 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,6 @@ dependencies = [
2828
"cpufeatures",
2929
]
3030

31-
[[package]]
32-
name = "ahash"
33-
version = "0.8.12"
34-
source = "registry+https://github.com/rust-lang/crates.io-index"
35-
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
36-
dependencies = [
37-
"cfg-if",
38-
"once_cell",
39-
"version_check",
40-
"zerocopy",
41-
]
42-
4331
[[package]]
4432
name = "aho-corasick"
4533
version = "1.1.3"
@@ -1577,15 +1565,6 @@ dependencies = [
15771565
"serde",
15781566
]
15791567

1580-
[[package]]
1581-
name = "hashbrown"
1582-
version = "0.14.5"
1583-
source = "registry+https://github.com/rust-lang/crates.io-index"
1584-
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1585-
dependencies = [
1586-
"ahash",
1587-
]
1588-
15891568
[[package]]
15901569
name = "hashbrown"
15911570
version = "0.15.4"
@@ -1941,7 +1920,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
19411920
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
19421921
dependencies = [
19431922
"equivalent",
1944-
"hashbrown 0.15.4",
1923+
"hashbrown",
19451924
"serde",
19461925
]
19471926

@@ -2656,7 +2635,7 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
26562635
dependencies = [
26572636
"crc32fast",
26582637
"flate2",
2659-
"hashbrown 0.15.4",
2638+
"hashbrown",
26602639
"indexmap",
26612640
"memchr",
26622641
"ruzstd 0.7.3",
@@ -2670,7 +2649,7 @@ checksum = "b3e3d0a7419f081f4a808147e845310313a39f322d7ae1f996b7f001d6cbed04"
26702649
dependencies = [
26712650
"crc32fast",
26722651
"flate2",
2673-
"hashbrown 0.15.4",
2652+
"hashbrown",
26742653
"indexmap",
26752654
"memchr",
26762655
"ruzstd 0.8.1",
@@ -3304,7 +3283,7 @@ dependencies = [
33043283
"regex",
33053284
"serde_json",
33063285
"similar",
3307-
"wasmparser 0.219.2",
3286+
"wasmparser 0.236.0",
33083287
]
33093288

33103289
[[package]]
@@ -3696,7 +3675,7 @@ dependencies = [
36963675
"either",
36973676
"elsa",
36983677
"ena",
3699-
"hashbrown 0.15.4",
3678+
"hashbrown",
37003679
"indexmap",
37013680
"jobserver",
37023681
"libc",
@@ -4515,7 +4494,7 @@ dependencies = [
45154494
name = "rustc_query_system"
45164495
version = "0.0.0"
45174496
dependencies = [
4518-
"hashbrown 0.15.4",
4497+
"hashbrown",
45194498
"parking_lot",
45204499
"rustc_abi",
45214500
"rustc_ast",
@@ -5454,7 +5433,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
54545433
checksum = "9e9c1e705f82a260173f3eec93f2ff6d7807f23ad5a8cc2e7316a891733ea7a1"
54555434
dependencies = [
54565435
"gimli 0.31.1",
5457-
"hashbrown 0.15.4",
5436+
"hashbrown",
54585437
"object 0.36.7",
54595438
"tracing",
54605439
]
@@ -6147,11 +6126,8 @@ version = "0.219.2"
61476126
source = "registry+https://github.com/rust-lang/crates.io-index"
61486127
checksum = "5220ee4c6ffcc0cb9d7c47398052203bc902c8ef3985b0c8134118440c0b2921"
61496128
dependencies = [
6150-
"ahash",
61516129
"bitflags",
6152-
"hashbrown 0.14.5",
61536130
"indexmap",
6154-
"semver",
61556131
]
61566132

61576133
[[package]]
@@ -6161,7 +6137,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
61616137
checksum = "be22e5a8f600afce671dd53c8d2dd26b4b7aa810fd18ae27dfc49737f3e02fc5"
61626138
dependencies = [
61636139
"bitflags",
6164-
"hashbrown 0.15.4",
6140+
"hashbrown",
61656141
"indexmap",
61666142
"semver",
61676143
"serde",

src/tools/run-make-support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object = "0.37"
1717
regex = "1.11"
1818
serde_json = "1.0"
1919
similar = "2.7"
20-
wasmparser = { version = "0.219", default-features = false, features = ["std", "features", "validate"] }
20+
wasmparser = { version = "0.236", default-features = false, features = ["std", "features", "validate"] }
2121
# tidy-alphabetical-end
2222

2323
# Shared with bootstrap and compiletest

0 commit comments

Comments
 (0)