xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/hello_world/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_doc")
2
3package(default_visibility = ["//visibility:public"])
4
5rust_binary(
6    name = "hello_world",
7    srcs = ["src/main.rs"],
8    deps = ["@examples//hello_lib"],
9)
10
11rust_doc(
12    name = "hello_world_doc",
13    crate = ":hello_world",
14)
15