blob: 960956c52425521498ac0e4db7705abaf4efa25a [file] [log] [blame]
# Copyright 2021 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_inspect_common") {
name = "ffx_inspect_common"
version = "0.1.0"
edition = "2020"
deps = [
"//garnet/lib/rust/files_async",
"//garnet/lib/rust/io_util",
"//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol-rustc",
"//sdk/fidl/fuchsia.diagnostics:fuchsia.diagnostics-rustc",
"//sdk/fidl/fuchsia.io:fuchsia.io-rustc",
"//src/developer/ffx:ffx_lib_args",
"//src/developer/ffx:ffx_lib_sub_command",
"//src/developer/ffx/lib/errors:lib",
"//src/diagnostics/iquery:lib",
"//src/lib/diagnostics/data/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:regex",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
]
sources = [ "src/lib.rs" ]
}