blob: db6cbc6a3b6dcf0b0adeba195c2894357f06c4ce [file] [log] [blame]
# Copyright 2018 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("store") {
name = "auth_store"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust-crates/rustc_deps:base64",
"//third_party/rust-crates/rustc_deps:failure",
"//third_party/rust-crates/rustc_deps:log",
"//third_party/rust-crates/rustc_deps:serde",
"//third_party/rust-crates/rustc_deps:serde_derive",
"//third_party/rust-crates/rustc_deps:serde_json",
"//third_party/rust-crates/rustc_deps:tempfile",
]
}