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