blob: 3b4b83af3f9d053859d1f3e5994c7e319f4d10ee [file] [log] [blame]
# Copyright 2017 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("fuchsia-inspect") {
name = "fuchsia_inspect"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/public/lib/fidl/rust/fidl",
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-syslog",
"//third_party/rust_crates:bitfield",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
"//third_party/rust_crates:num-derive",
"//third_party/rust_crates:num-traits",
"//third_party/rust_crates:parking_lot",
"//zircon/public/fidl/fuchsia-inspect:fuchsia-inspect-rustc",
]
}