aboutsummaryrefslogtreecommitdiff
path: root/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel')
-rw-r--r--wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel b/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel
index 71e86112..f8e6a020 100644
--- a/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel
+++ b/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "serde_json",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -88,8 +92,11 @@ rust_library(
)
cargo_build_script(
- name = "serde_json_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "serde_json_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_features = [
"default",
"std",
@@ -98,6 +105,7 @@ cargo_build_script(
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -124,6 +132,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":serde_json_build_script",
+ actual = ":serde_json_bs",
tags = ["manual"],
)