blob: 40a877f4c701bb7fef16dce75a263c3b56b05872 [file] [log] [blame]
# Copyright 2024 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("lib") {
edition = "2021"
deps = [
"//sdk/rust/zx",
"//src/lib/fuchsia-fs",
"//src/security/lib/kms-stateless/rust",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
name = "crypt_policy"
with_unit_tests = false
}
group("policy") {
public_deps = [ ":lib" ]
}