blob: 40b793048dc2b978ceb37a408fe1c828bf4a4bd9 [file]
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_doc",
)
rust_binary(
name = "hello_world",
srcs = ["src/main.rs"],
deps = ["@examples//hello_lib"],
)
rust_doc(
name = "hello_world_doc",
dep = ":hello_world",
)