blob: f7a7f51510582580b131f6cac1cb93991a557e6c [file] [edit]
# 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 = "telemetry",
srcs = glob([
"src/*.rs",
"src/**/*.rs",
]),
edition = "2024",
deps = [
],
)
rust_doc(
name = "telemetry_doc",
crate = ":telemetry",
)