blob: 0dfcdbdb3f6d683c3041d53f0ba67fadf824c1bf [file]
# Licensed under the Apache-2.0 license
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_library", "rust_test")
rust_library(
name = "orchestrator_api",
srcs = [
"src/boot_control.rs",
"src/boot_monitor.rs",
"src/config.rs",
"src/lib.rs",
],
edition = "2024",
visibility = ["//visibility:public"],
)
# Host tests: build on the host platform, no kernel/QEMU.
rust_test(
name = "orchestrator_api_test",
crate = ":orchestrator_api",
)