blob: cef9fa6859b99b15bd0d4b871f916424c59beab4 [file]
# Licensed under the Apache-2.0 license
# SPDX-License-Identifier: Apache-2.0
load("@rules_rust//rust:defs.bzl", "rust_doc", "rust_library")
package(default_visibility = ["//visibility:public"])
rust_library(
name = "tock",
srcs = glob([
"src/*.rs",
"src/**/*.rs",
]),
crate_name = "openprot_platform_tock",
edition = "2024",
deps = [
],
)
rust_doc(
name = "tock_doc",
crate = ":tock",
)