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
17
//! Configuration loading and application.
pub(crate) mod apply;
mod loader;
mod parse;
pub mod types;

#[cfg(any(test, feature = "fuzzing"))]
mod test_support;
#[cfg(test)]
mod tests;

pub use apply::apply_config;
pub use loader::load_config;
pub(crate) use parse::parse_duration_value;

#[cfg(any(test, feature = "fuzzing"))]
pub(crate) use test_support::load_config_file;