blob: 9a3cd05664f3458afd8a454af7b7139051a8595b [file]
# Licensed under the Apache-2.0 license
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_library")
load("//target/ast10x0:defs.bzl", "TARGET_COMPATIBLE_WITH")
rust_library(
name = "orchestrator_server",
srcs = [
"src/lib.rs",
"src/runtime.rs",
],
crate_name = "openprot_orchestrator_server",
edition = "2024",
tags = ["kernel"],
target_compatible_with = TARGET_COMPATIBLE_WITH,
visibility = ["//visibility:public"],
deps = [
"//services/orchestrator/sm:orchestrator_sm",
"//services/orchestrator/timer:orchestrator_timer",
"@pigweed//pw_kernel/userspace",
],
)