strest 0.1.10

Blazing-fast async HTTP load tester in Rust - lock-free design, real-time stats, distributed runs, and optional chart exports for high-load API testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HTTP request execution and workload orchestration.
mod rate;
mod sender;
mod tls;
pub(crate) mod workload;

#[cfg(test)]
mod tests;

pub(crate) use rate::build_rate_limiter;
pub use sender::setup_request_sender;

#[cfg(test)]
pub(crate) use rate::{RateController, RatePlan, RateStage};
#[cfg(test)]
pub(crate) use tls::{AlpnChoice, resolve_alpn};