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
mod adapters;
mod app;
mod application;
mod args;
mod charts;
mod config;
mod distributed;
mod domain;
mod entry;
mod error;
mod http;
mod metrics;
mod protocol;
mod script;
mod service;
mod shutdown;
mod sinks;
mod system;
mod ui;
#[cfg(feature = "wasm")]
mod wasm_plugins;
#[cfg(feature = "wasm")]
mod wasm_runtime;

#[cfg(feature = "alloc-profiler")]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

use error::AppResult;

fn main() -> AppResult<()> {
    entry::run()
}