blob: 9bc2c5068ec4eb10fd2d9812d1b30341530a45bc [file] [log] [blame]
# Copyright 2020 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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("v2-argh-wrapper") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
visibility = [ "//src/diagnostics/*" ]
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:tracing",
]
test_deps = [ "//src/lib/fuchsia" ]
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
deps = [ ":v2-argh-wrapper_test($host_toolchain)" ]
}