third_party.pigweed.src/pw_status/rust/BUILD.bazel
Erik Gilling d7480c0f95 pw_status: Add Rust support
Change-Id: I5984dc17e8fdb2f1dbee98c93eef05af6938a843
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/142937
Pigweed-Auto-Submit: Erik Gilling <konkers@google.com>
Reviewed-by: Taylor Cramer <cramertj@google.com>
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
2023-04-27 22:45:09 +00:00

41 lines
1.1 KiB
Python

# Copyright 2023 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
load("@rules_rust//rust:defs.bzl", "rust_doc", "rust_doc_test", "rust_library", "rust_test")
rust_library(
name = "pw_status",
srcs = ["pw_status.rs"],
crate_features = select({
"@rust_crates//:std": ["std"],
"//conditions:default": [""],
}),
visibility = ["//visibility:public"],
)
rust_test(
name = "pw_status_test",
crate = ":pw_status",
)
rust_doc_test(
name = "pw_status_doc_test",
crate = ":pw_status",
)
rust_doc(
name = "pw_status_doc",
crate = ":pw_status",
)