We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4b4a5 commit 3023f65Copy full SHA for 3023f65
BUILD
@@ -13,7 +13,7 @@
13
# limitations under the License.
14
15
load("@rules_rust//cargo:cargo_build_script.bzl", "cargo_build_script")
16
-load("@rules_rust//rust:defs.bzl", "rust_library")
+load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library")
17
18
exports_files([
19
"Cargo.toml",
@@ -38,3 +38,16 @@ rust_library(
38
"//bazel/cargo/remote:log",
39
],
40
)
41
+
42
+rust_binary(
43
+ name = "http_auth_random",
44
+ srcs = ["examples/http_auth_random/src/lib.rs"],
45
+ crate_type = "cdylib",
46
+ edition = "2018",
47
+ out_binary = True,
48
+ visibility = ["//visibility:private"],
49
+ deps = [
50
+ ":proxy_wasm",
51
+ "//bazel/cargo/remote:log",
52
+ ],
53
+)
0 commit comments