blob: bb392d7e5b208e76d87e1d3fce34f44e5a329f2b [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/rust/rustc_library.gni")
import("//src/sys/build/components.gni")
rustc_library("v2-argh-wrapper") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:log",
]
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
deps = [ ":v2-argh-wrapper_test($host_toolchain)" ]
}