blob: eab9f8ce8adea8d54767de5ad1ba350a66caf1dd [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 = "usart_backend_ast10x0",
srcs = ["src/lib.rs"],
crate_name = "usart_backend",
edition = "2024",
target_compatible_with = TARGET_COMPATIBLE_WITH,
visibility = ["//visibility:public"],
deps = [
"//drivers/usart/api:usart_api",
"//target/ast10x0/peripherals",
"@rust_crates//:embedded-io",
],
)