blob: 9bf92ec7104b321f35afed3f6cd5104b7f105ce4 [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/fuchsia-async",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:tracing",
]
sources = [
"src/actor.rs",
"src/actor_runner.rs",
"src/counter.rs",
"src/environment.rs",
"src/lib.rs",
]
}