| # Licensed under the Apache-2.0 license | |
| load("@rules_rust//rust:defs.bzl", "rust_library") | |
| rust_library( | |
| name = "crypto_client", | |
| srcs = ["src/lib.rs"], | |
| crate_features = ["ecdsa"], | |
| 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", | |
| ], | |
| ) |