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
mod builtins;
mod registry;
mod runtime;
mod traits;

#[cfg(test)]
pub(crate) mod examples;
#[cfg(test)]
mod tests;

#[cfg(test)]
pub(crate) use registry::ProtocolRegistry;
pub use registry::protocol_registry;
pub use runtime::setup_request_sender;
pub use traits::{ProtocolAdapter, ProtocolAdapterError, TransportAdapter};