aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/rust/hello_world/BUILD
blob: 1f5365675bdac0eba76d5df54c3645dbb5bc41e4 (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_doc")

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

rust_doc(
    name = "hello_world_doc",
    dep = ":hello_world",
)