blob: 15036b64d02d464fbe23959a2808d25b1b33b48e [file] [log] [blame]
# Copyright 2019 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("identity_key_manager") {
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.identity.keys:fuchsia.identity.keys-rustc",
"//src/identity/lib/identity_common",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:thiserror",
]
test_deps = [ "//third_party/rust_crates:matches" ]
sources = [
"src/key_manager.rs",
"src/lib.rs",
]
}