rlt 0.3.0

A universal load testing library for Rust, with real-time TUI support
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.byte-unit]
version = "5.1"

[dependencies.cfg-if]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.crossterm]
version = "0.29"

[dependencies.governor]
optional = true
version = "0.10"

[dependencies.hdrhistogram]
version = "7.5"

[dependencies.http]
optional = true
version = "1.1"

[dependencies.humantime]
version = "2.1"

[dependencies.itertools]
version = "0.14"

[dependencies.log]
optional = true
version = "0.4"

[dependencies.nonzero_ext]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.ratatui]
default-features = false
features = ["crossterm"]
version = "0.29"

[dependencies.serde]
features = ["serde_derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.tabled]
version = "0.20"

[dependencies.tokio]
features = ["rt", "time", "signal", "macros"]
version = "1.36"

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
optional = true
version = "0.1"

[dependencies.tui-logger]
features = ["tracing-support"]
optional = true
version = "0.17"

[dev-dependencies.bytes]
version = "1.6"

[dev-dependencies.http-body-util]
version = "0.1"

[dev-dependencies.hyper]
features = ["client"]
version = "1.2"

[dev-dependencies.hyper-tls]
version = "0.6"

[dev-dependencies.hyper-util]
features = ["client", "client-legacy", "http1", "tokio"]
version = "0.1"

[dev-dependencies.reqwest]
version = "0.12"

[dev-dependencies.tokio]
features = ["rt-multi-thread"]
version = "1.36"

[dev-dependencies.tokio-postgres]
version = "0.7"

[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[[example]]
name = "http_hyper"
path = "examples/http_hyper.rs"

[[example]]
name = "http_reqwest"
path = "examples/http_reqwest.rs"

[[example]]
name = "logging"
path = "examples/logging.rs"

[[example]]
name = "postgres"
path = "examples/postgres.rs"

[[example]]
name = "simple_stateless"
path = "examples/simple_stateless.rs"

[[example]]
name = "warmup"
path = "examples/warmup.rs"

[features]
default = ["tracing", "rate_limit", "http"]
http = ["dep:http"]
rate_limit = ["dep:governor"]
tracing = ["dep:log", "dep:tracing", "dep:tui-logger"]

[lib]
name = "rlt"
path = "src/lib.rs"

[package]
authors = ["Wenxuan Zhang <wenxuangm@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["visualization", "command-line-utilities", "development-tools::profiling"]
description = "A universal load testing library for Rust, with real-time TUI support"
edition = "2021"
keywords = ["performance", "load-testing", "benchmark", "cli"]
license = "MIT OR Apache-2.0"
name = "rlt"
readme = "README.md"
repository = "https://github.com/wfxr/rlt"
version = "0.3.0"