blob: acee4dfc56de2bae58836bea4143418279695c74 [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_library.gni")
rustc_library("stdout-to-debuglog") {
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.boot:fuchsia.boot_rust",
"//src/lib/fdio/rust:fdio",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
}
group("rust") {
public_deps = [ ":stdout-to-debuglog" ]
}