blob: 8ffb639292a70fab696befae446ef00748882abd [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")
rustc_library("ffx_component") {
name = "ffx_component"
version = "0.1.0"
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol-rustc",
"//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/lib/fuchsia-url",
"//src/lib/zircon/rust:fuchsia-zircon-status",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
}