blob: 626b9dec564765882f01ecd30324912b9053244d [file] [log] [blame]
# Copyright 2023 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("inspect_testing") {
testonly = true
edition = "2021"
sources = [
"src/deprecated_fidl_server.rs",
"src/lib.rs",
"src/table.rs",
]
deps = [
"//sdk/fidl/fuchsia.inspect:fuchsia.inspect_rust",
"//sdk/fidl/fuchsia.inspect.deprecated:fuchsia.inspect.deprecated_rust",
"//src/lib/diagnostics/inspect/runtime/rust",
"//src/lib/diagnostics/inspect/rust",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:structopt",
]
}