blob: 45660286f3025caa1580f458c37be7abd623c3f2 [file]
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("@rules_rust//rust:defs.bzl", "rust_binary")
bzl_library(
name = "bzl_lib",
srcs = [
"transitions.bzl",
"wasm_bindgen.bzl",
"wasm_bindgen_test.bzl",
],
visibility = ["//:__pkg__"],
deps = [
"@rules_rust//rust:bzl_lib",
],
)
rust_binary(
name = "wasm_bindgen_test_wrapper",
srcs = ["wasm_bindgen_test_wrapper.rs"],
edition = "2021",
visibility = ["//visibility:public"],
deps = [
"@rrwbd//:serde_json",
"@rules_rust//rust/runfiles",
],
)