blob: 55ad6b8d64135182f197c794a3078416778d1ff2 [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_config",
srcs = ["src/lib.rs"],
edition = "2024",
visibility = ["//visibility:public"],
)
# Host tests: build on the host platform, no kernel/QEMU.
rust_test(
name = "orchestrator_config_test",
crate = ":orchestrator_config",
)