diff options
Diffstat (limited to 'webhook/BUILD')
| -rw-r--r-- | webhook/BUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webhook/BUILD b/webhook/BUILD index f29da5f..4340909 100644 --- a/webhook/BUILD +++ b/webhook/BUILD @@ -7,18 +7,18 @@ test_suite(name = "tests") rust_binary( name = "webhook", srcs = glob(["src/**"]), - deps = all_crate_deps() + ["//common/rust:common"], visibility = ["//visibility:public"], + deps = all_crate_deps() + ["//common/rust:common"], ) rust_test( name = "webhook_test", - crate = ":webhook" + crate = ":webhook", ) rust_image( name = "image", + base = "//bazel:base", binary = ":webhook", visibility = ["//visibility:public"], - base = "//bazel:base", ) |
