blob: 6707f9fa0ad41693b9c0365c623886443772c319 [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_sm",
srcs = [
"src/lib.rs",
"src/model.rs",
"src/tests.rs",
],
crate_name = "openprot_orchestrator_sm",
edition = "2024",
visibility = ["//visibility:public"],
deps = [
"@rust_crates//:heapless",
],
)
rust_test(
name = "orchestrator_sm_test",
crate = ":orchestrator_sm",
edition = "2024",
)