Skip to content

Commit 08ef071

Browse files
committed
Update wasmprinter to latest
1 parent ed29189 commit 08ef071

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

library/stdarch/Cargo.lock

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ version = "1.5.0"
8282
source = "registry+https://github.com/rust-lang/crates.io-index"
8383
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
8484

85+
[[package]]
86+
name = "bitflags"
87+
version = "2.9.1"
88+
source = "registry+https://github.com/rust-lang/crates.io-index"
89+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
90+
8591
[[package]]
8692
name = "cc"
8793
version = "1.2.29"
@@ -99,19 +105,19 @@ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
99105

100106
[[package]]
101107
name = "clap"
102-
version = "4.5.40"
108+
version = "4.5.41"
103109
source = "registry+https://github.com/rust-lang/crates.io-index"
104-
checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
110+
checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
105111
dependencies = [
106112
"clap_builder",
107113
"clap_derive",
108114
]
109115

110116
[[package]]
111117
name = "clap_builder"
112-
version = "4.5.40"
118+
version = "4.5.41"
113119
source = "registry+https://github.com/rust-lang/crates.io-index"
114-
checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
120+
checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
115121
dependencies = [
116122
"anstream",
117123
"anstyle",
@@ -121,9 +127,9 @@ dependencies = [
121127

122128
[[package]]
123129
name = "clap_derive"
124-
version = "4.5.40"
130+
version = "4.5.41"
125131
source = "registry+https://github.com/rust-lang/crates.io-index"
126-
checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
132+
checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
127133
dependencies = [
128134
"heck",
129135
"proc-macro2",
@@ -833,21 +839,23 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
833839

834840
[[package]]
835841
name = "wasmparser"
836-
version = "0.113.3"
842+
version = "0.235.0"
837843
source = "registry+https://github.com/rust-lang/crates.io-index"
838-
checksum = "286049849b5a5bd09a8773171be96824afabffc7cc3df6caaf33a38db6cd07ae"
844+
checksum = "161296c618fa2d63f6ed5fffd1112937e803cb9ec71b32b01a76321555660917"
839845
dependencies = [
846+
"bitflags",
840847
"indexmap 2.10.0",
841848
"semver",
842849
]
843850

844851
[[package]]
845852
name = "wasmprinter"
846-
version = "0.2.67"
853+
version = "0.235.0"
847854
source = "registry+https://github.com/rust-lang/crates.io-index"
848-
checksum = "f6615a5587149e753bf4b93f90fa3c3f41c88597a7a2da72879afcabeda9648f"
855+
checksum = "75aa8e9076de6b9544e6dab4badada518cca0bf4966d35b131bbd057aed8fa0a"
849856
dependencies = [
850857
"anyhow",
858+
"termcolor",
851859
"wasmparser",
852860
]
853861

library/stdarch/crates/stdarch-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cc = "1.0"
2020
# time, and we want to make updates to this explicit rather than automatically
2121
# picking up updates which might break CI with new instruction names.
2222
[target.'cfg(target_arch = "wasm32")'.dependencies]
23-
wasmprinter = "=0.2.67"
23+
wasmprinter = "=0.235"
2424

2525
[features]
2626
default = []

0 commit comments

Comments
 (0)