blob: 9f138f740df6d93434e8e4b587b08eaefe4098b0 [file] [log] [blame]
load(
"@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",
crate = ":hello_world",
)