| # Copyright 2023 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("insecure") { |
| edition = "2021" |
| with_unit_tests = false |
| name = "fxfs-insecure-crypto" |
| |
| deps = [ |
| "//build/validate:non_production_tag", |
| "//sdk/rust/zx-status", |
| "//src/lib/fuchsia-sync", |
| "//src/storage/fxfs/crypto", |
| "//src/storage/lib/fscrypt", |
| "//third_party/rust_crates:aes-gcm-siv", |
| "//third_party/rust_crates:async-trait", |
| "//third_party/rust_crates:log", |
| "//third_party/rust_crates:rand", |
| "//third_party/rust_crates:rustc-hash", |
| ] |
| |
| sources = [ "src/lib.rs" ] |
| visibility = [ |
| "//src/storage/f2fs_reader/tests/*", |
| "//src/storage/fxfs/*", |
| ] |
| } |