blob: 92a3014a0fe87831e322d74de1eda553b1065d44 [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_binary.gni")
if (is_host) {
rustc_binary("poison_tuf_signature") {
testonly = true
edition = "2021"
source_root = "src/main.rs"
sources = [ "src/main.rs" ]
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:zip",
]
}
}