Skip to content

Commit d979fe2

Browse files
committed
fix: add missing srcs parameter to rust_wasm_component_macro
The macro was calling rust_wasm_component without the required srcs parameter, causing 'missing 1 required positional argument: srcs' errors during query operations across the repository.
1 parent ce43aa3 commit d979fe2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rust/rust_wasm_component_macro.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ def rust_wasm_component_macro(
165165
# Build the final WASM component
166166
rust_wasm_component(
167167
name = name,
168+
srcs = srcs,
168169
deps = [":" + wasm_lib],
169170
wit = wit,
170171
profiles = profiles,

0 commit comments

Comments
 (0)