blob: eb403a1f843331dd61310dc631fcad4f1fcbe214 [file] [log] [blame]
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/rust/rustc_library.gni")
rustc_library("rust") {
name = "kms_stateless"
edition = "2021"
sources = [
"src/legacy_hardware_derive_keys.rs",
"src/lib.rs",
"src/sealing_keys.rs",
]
deps = [
"//sdk/fidl/fuchsia.security.keymint:fuchsia.security.keymint_rust",
"//sdk/lib/device-watcher/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/fuchsia-fs",
"//src/security/lib/tee/rust",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:thiserror",
]
}