Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
bfb0dccde443038b8ea566dbadbb2efb9e3626c8
/
.
/
test
/
test_env
/
BUILD
blob: d20e1ad332894caeb00b1ebac303b70a93ca54f0 [
file
]
load
(
"//rust:rust.bzl"
,
"rust_binary"
,
"rust_test"
,
)
rust_binary
(
name
=
"hello-world"
,
srcs
=
[
"src/main.rs"
],
edition
=
"2018"
,
)
rust_test
(
name
=
"test"
,
srcs
=
[
"tests/run.rs"
],
data
=
[
":hello-world"
],
edition
=
"2018"
,
)