Skip to content

Commit d2e385e

Browse files
sayrerclaude
andcommitted
Update wasm-bindgen to 0.2.105 to match rules_rust_wasm_bindgen CLI.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent eacd61f commit d2e385e

12 files changed

+309
-238
lines changed

3rdparty/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ crates_vendor(
8787
version = "0.2.178",
8888
),
8989
"wasm-bindgen": crate.spec(
90-
version = "=0.2.100",
90+
version = "=0.2.105",
9191
),
9292
"js-sys": crate.spec(
93-
version = "=0.3.77",
93+
version = "=0.3.82",
9494
),
9595
"gungraun": crate.spec(
9696
version = "0.17.0",

3rdparty/Cargo.lock

Lines changed: 11 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3rdparty/crates/BUILD.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ alias(
9898
)
9999

100100
alias(
101-
name = "js-sys-0.3.77",
102-
actual = "@twitter_text__js-sys-0.3.77//:js_sys",
101+
name = "js-sys-0.3.82",
102+
actual = "@twitter_text__js-sys-0.3.82//:js_sys",
103103
tags = ["manual"],
104104
)
105105

106106
alias(
107107
name = "js-sys",
108-
actual = "@twitter_text__js-sys-0.3.77//:js_sys",
108+
actual = "@twitter_text__js-sys-0.3.82//:js_sys",
109109
tags = ["manual"],
110110
)
111111

@@ -326,14 +326,14 @@ alias(
326326
)
327327

328328
alias(
329-
name = "wasm-bindgen-0.2.100",
330-
actual = "@twitter_text__wasm-bindgen-0.2.100//:wasm_bindgen",
329+
name = "wasm-bindgen-0.2.105",
330+
actual = "@twitter_text__wasm-bindgen-0.2.105//:wasm_bindgen",
331331
tags = ["manual"],
332332
)
333333

334334
alias(
335335
name = "wasm-bindgen",
336-
actual = "@twitter_text__wasm-bindgen-0.2.100//:wasm_bindgen",
336+
actual = "@twitter_text__wasm-bindgen-0.2.105//:wasm_bindgen",
337337
tags = ["manual"],
338338
)
339339

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ rust_library(
9696
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
9797
"//conditions:default": ["@platforms//:incompatible"],
9898
}),
99-
version = "0.3.77",
99+
version = "0.3.82",
100100
deps = [
101101
"@twitter_text__once_cell-1.21.3//:once_cell",
102-
"@twitter_text__wasm-bindgen-0.2.100//:wasm_bindgen",
102+
"@twitter_text__wasm-bindgen-0.2.105//:wasm_bindgen",
103103
],
104104
)

3rdparty/crates/BUILD.wasm-bindgen-0.2.100.bazel renamed to 3rdparty/crates/BUILD.wasm-bindgen-0.2.105.bazel

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,12 @@ rust_library(
4040
),
4141
crate_features = [
4242
"default",
43-
"msrv",
44-
"rustversion",
4543
"std",
4644
],
4745
crate_root = "src/lib.rs",
4846
edition = "2021",
4947
proc_macro_deps = [
50-
"@twitter_text__rustversion-1.0.22//:rustversion",
51-
"@twitter_text__wasm-bindgen-macro-0.2.100//:wasm_bindgen_macro",
48+
"@twitter_text__wasm-bindgen-macro-0.2.105//:wasm_bindgen_macro",
5249
],
5350
rustc_env_files = [
5451
":cargo_toml_env_vars",
@@ -106,11 +103,12 @@ rust_library(
106103
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
107104
"//conditions:default": ["@platforms//:incompatible"],
108105
}),
109-
version = "0.2.100",
106+
version = "0.2.105",
110107
deps = [
111108
"@twitter_text__cfg-if-1.0.4//:cfg_if",
112109
"@twitter_text__once_cell-1.21.3//:once_cell",
113-
"@twitter_text__wasm-bindgen-0.2.100//:build_script_build",
110+
"@twitter_text__wasm-bindgen-0.2.105//:build_script_build",
111+
"@twitter_text__wasm-bindgen-shared-0.2.105//:wasm_bindgen_shared",
114112
],
115113
)
116114

@@ -120,6 +118,9 @@ cargo_build_script(
120118
include = ["**/*.rs"],
121119
allow_empty = True,
122120
),
121+
aliases = {
122+
"@twitter_text__rustversion-1.0.22//:rustversion": "rustversion_compat",
123+
},
123124
compile_data = glob(
124125
include = ["**"],
125126
allow_empty = True,
@@ -135,8 +136,6 @@ cargo_build_script(
135136
),
136137
crate_features = [
137138
"default",
138-
"msrv",
139-
"rustversion",
140139
"std",
141140
],
142141
crate_name = "build_script_build",
@@ -154,7 +153,13 @@ cargo_build_script(
154153
],
155154
),
156155
edition = "2021",
156+
link_deps = [
157+
"@twitter_text__wasm-bindgen-shared-0.2.105//:wasm_bindgen_shared",
158+
],
157159
pkg_name = "wasm-bindgen",
160+
proc_macro_deps = [
161+
"@twitter_text__rustversion-1.0.22//:rustversion",
162+
],
158163
rustc_env_files = [
159164
":cargo_toml_env_vars",
160165
],
@@ -168,7 +173,7 @@ cargo_build_script(
168173
"noclippy",
169174
"norustfmt",
170175
],
171-
version = "0.2.100",
176+
version = "0.2.105",
172177
visibility = ["//visibility:private"],
173178
)
174179

3rdparty/crates/BUILD.wasm-bindgen-backend-0.2.100.bazel

Lines changed: 0 additions & 104 deletions
This file was deleted.

3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.100.bazel renamed to 3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.105.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ rust_proc_macro(
9292
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
9393
"//conditions:default": ["@platforms//:incompatible"],
9494
}),
95-
version = "0.2.100",
95+
version = "0.2.105",
9696
deps = [
9797
"@twitter_text__quote-1.0.42//:quote",
98-
"@twitter_text__wasm-bindgen-macro-support-0.2.100//:wasm_bindgen_macro_support",
98+
"@twitter_text__wasm-bindgen-macro-support-0.2.105//:wasm_bindgen_macro_support",
9999
],
100100
)

3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.100.bazel renamed to 3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.105.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ rust_library(
9292
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
9393
"//conditions:default": ["@platforms//:incompatible"],
9494
}),
95-
version = "0.2.100",
95+
version = "0.2.105",
9696
deps = [
97+
"@twitter_text__bumpalo-3.19.0//:bumpalo",
9798
"@twitter_text__proc-macro2-1.0.103//:proc_macro2",
9899
"@twitter_text__quote-1.0.42//:quote",
99100
"@twitter_text__syn-2.0.111//:syn",
100-
"@twitter_text__wasm-bindgen-backend-0.2.100//:wasm_bindgen_backend",
101-
"@twitter_text__wasm-bindgen-shared-0.2.100//:wasm_bindgen_shared",
101+
"@twitter_text__wasm-bindgen-shared-0.2.105//:wasm_bindgen_shared",
102102
],
103103
)

3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.100.bazel renamed to 3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.105.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ rust_library(
9696
"@rules_rust//rust/platform:x86_64-unknown-uefi": [],
9797
"//conditions:default": ["@platforms//:incompatible"],
9898
}),
99-
version = "0.2.100",
99+
version = "0.2.105",
100100
deps = [
101101
"@twitter_text__unicode-ident-1.0.22//:unicode_ident",
102-
"@twitter_text__wasm-bindgen-shared-0.2.100//:build_script_build",
102+
"@twitter_text__wasm-bindgen-shared-0.2.105//:build_script_build",
103103
],
104104
)
105105

@@ -152,7 +152,7 @@ cargo_build_script(
152152
"noclippy",
153153
"norustfmt",
154154
],
155-
version = "0.2.100",
155+
version = "0.2.105",
156156
visibility = ["//visibility:private"],
157157
)
158158

0 commit comments

Comments
 (0)