blob: c8b1a7f5630e23f4e3ee69d2be7e0717e8ba4a32 [file]
# 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")
rustc_library("ffx_component") {
name = "ffx_component"
version = "0.1.0"
edition = "2018"
deps = [
"//garnet/lib/rust/io_util",
"//sdk/fidl/fuchsia.io:fuchsia.io-rustc",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/developer/ffx/lib/errors:lib",
"//src/lib/fidl/rust/fidl",
"//src/sys/lib/moniker",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
}