• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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