blob: 3a0fa7668833773f17cf058e51394106b79869f0 [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_binary.gni")
rustc_binary("bin") {
name = "inspect_rust_codelab_client"
edition = "2018"
deps = [
"//src/diagnostics/examples/inspect/rust/inspect-codelab-shared",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:lazy_static",
]
}