aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/rust/hello_world/BUILD
blob: e774dcc835fdcf426253f0a003e0bc3533185d2e (plain)
1
2
3
4
5
6
7
8
9
package(default_visibility = ["//visibility:public"])

load("/tools/build_rules/rust/rust", "rust_binary")

rust_binary(
    name = "hello_world",
    srcs = ["src/main.rs"],
    deps = ["//examples/rust/hello_lib"],
)