blob: 29141c914c69e0bd88d89239af483f1f7f990f22 [file]
# Licensed under the Apache-2.0 license
load("@rules_rust//rust:defs.bzl", "rust_library")
rust_library(
name = "crypto_client",
srcs = ["src/lib.rs"],
edition = "2024",
tags = ["kernel"],
visibility = ["//visibility:public"],
deps = [
"//services/crypto/api:crypto_api",
"@pigweed//pw_kernel/userspace",
"@pigweed//pw_status/rust:pw_status",
"@oot_crates_no_std//:zerocopy",
],
)