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

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

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

rust_docs(
    name = "hello_world_docs",
    dep = ":hello_world",
)