blob: 30b1644717e64c03dd15d885a0d55f32bb83e553 [file] [log] [blame]
# Copyright 2018 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-cobalt") {
name = "fuchsia_cobalt"
edition = "2018"
version = "0.1.0"
with_unit_tests = true
deps = [
"//src/lib/fdio/rust:fdio",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/cobalt/src/lib/client/rust:cobalt-client",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:thiserror",
"//zircon/system/fidl/fuchsia-cobalt:fuchsia-cobalt-rustc",
"//zircon/system/fidl/fuchsia-mem:fuchsia-mem-rustc",
]
}