[package]
edition = "2021"
rust-version = "1.85"
name = "dev-stress"
version = "0.9.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-load stress testing for Rust. Concurrency, volume, saturation. Part of the dev-* verification suite."
homepage = "https://github.com/jamesgober/dev-stress"
documentation = "https://docs.rs/dev-stress"
readme = "README.md"
keywords = [
"stress",
"load-testing",
"concurrency",
"verification",
"ai-tools",
]
categories = [
"development-tools",
"development-tools::testing",
"development-tools::profiling",
]
license = "Apache-2.0"
repository = "https://github.com/jamesgober/dev-stress"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
system-stats = ["dep:sysinfo"]
[lib]
name = "dev_stress"
path = "src/lib.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.dev-report]
version = "0.9"
[dependencies.sysinfo]
version = "0.30"
optional = true
default-features = false
[dev-dependencies]
[profile.release]
opt-level = 3
lto = "thin"