blob: 652b729557a2153dbe48da41838fd6e72b8e9023 [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 = "2018"
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",
"//third_party/rust_crates:rand_core",
]
sources = [
"src/actor.rs",
"src/actor_runner.rs",
"src/counter.rs",
"src/environment.rs",
"src/lib.rs",
]
}