blob: 04d90314310266f242c8d4f3ae401f4eccf25baa [file] [log] [blame]
# 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 = "server_bin"
output_dir = target_out_dir + "/rust"
edition = "2021"
sources = [ "main.rs" ]
source_root = "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",
]
}