aboutsummaryrefslogtreecommitdiff
path: root/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel')
-rw-r--r--examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel16
1 files changed, 12 insertions, 4 deletions
diff --git a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel
index 24aa56c5..f36ada49 100644
--- a/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel
+++ b/examples/crate_universe/vendor_remote_pkgs/crates/BUILD.httparse-1.8.0.bazel
@@ -13,9 +13,13 @@ package(default_visibility = ["//visibility:public"])
rust_library(
name = "httparse",
- srcs = glob(["**/*.rs"]),
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
compile_data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -85,8 +89,11 @@ rust_library(
)
cargo_build_script(
- name = "httparse_build_script",
- srcs = glob(["**/*.rs"]),
+ name = "httparse_bs",
+ srcs = glob(
+ include = ["**/*.rs"],
+ allow_empty = False,
+ ),
crate_features = [
"default",
"std",
@@ -95,6 +102,7 @@ cargo_build_script(
crate_root = "build.rs",
data = glob(
include = ["**"],
+ allow_empty = True,
exclude = [
"**/* *",
".tmp_git_root/**/*",
@@ -121,6 +129,6 @@ cargo_build_script(
alias(
name = "build_script_build",
- actual = ":httparse_build_script",
+ actual = ":httparse_bs",
tags = ["manual"],
)