blob: ddf861bda2db80c5ab1f5bfd3eb2763677871da0 [file]
# Licensed under the Apache-2.0 license
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_library")
package(default_visibility = ["//visibility:public"])
rust_library(
name = "devices",
srcs = ["devices.rs"],
crate_name = "board_devices",
edition = "2024",
deps = ["//services/fwmanager/api:fwmanager_api"],
)