blob: b96a50494ab93abfafe988d1b97b067b50d5bbe5 [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_test.gni")
rustc_test("sandbox-test") {
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.net:fuchsia.net-rustc",
"//src/connectivity/lib/net-declare",
"//src/connectivity/network/testing/netemul/rust:lib",
"//src/connectivity/network/tests/integration/common:netstack_testing_common",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures-util",
]
configs -= [ "//build/config/rust:allow_unused_results" ]
sources = [ "src/lib.rs" ]
}