diff options
Diffstat (limited to 'common/rust/BUILD.bazel')
| -rw-r--r-- | common/rust/BUILD.bazel | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/rust/BUILD.bazel b/common/rust/BUILD.bazel new file mode 100644 index 0000000..0fbd9b2 --- /dev/null +++ b/common/rust/BUILD.bazel @@ -0,0 +1,9 @@ +load("@rules_rust//rust:defs.bzl", "rust_library") +load("//cargo:crates.bzl", "all_crate_deps") + +rust_library( + name = "common", + srcs = glob(["src/**"]), + visibility = ["//visibility:public"], + deps = all_crate_deps(), +) |
