blob: 64036d61772cdf738d4c6cbca3caca3a2a71e60d [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("stress-test") {
name = "stress_test"
edition = "2021"
deps = [
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:rand",
]
sources = [
"src/actor.rs",
"src/actor_runner.rs",
"src/counter.rs",
"src/environment.rs",
"src/lib.rs",
]
}