blob: 3910d8184a82fb7ca1bd9d65a6697deb1879fb6b [file] [log] [blame] [edit]
# Copyright 2022 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") {
output_name = "proxy_bin"
output_dir = target_out_dir + "/rust"
edition = "2021"
sources = [ "src/main.rs" ]
source_root = "src/main.rs"
deps = [
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//tools/fidl/example-tester/example/fidl:test.exampletester_rust",
]
}