aboutsummaryrefslogtreecommitdiff
path: root/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel')
-rw-r--r--wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel b/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel
index 8cbe38b6..027c92b0 100644
--- a/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel
+++ b/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "serde",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -90,8 +94,11 @@ rust_library(
)
cargo_build_script(
- name = "serde_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "serde_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_features = [
"default",
"derive",
@@ -102,6 +109,7 @@ cargo_build_script(
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -128,6 +136,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":serde_build_script",
+ actual = ":serde_bs",
tags = ["manual"],
)