torks 0.9.5

Fast HTTP load testing CLI built in Rust
[package]
name = "torks"
version = "0.9.5"
edition = "2021"
description = "Fast HTTP load testing CLI built in Rust"
license = "Apache-2.0"
repository = "https://github.com/Armonika-dz/torks"
homepage = "https://github.com/Armonika-dz/torks"
keywords = ["load-testing", "benchmark", "http", "performance", "stress-test"]
categories = ["command-line-utilities", "development-tools::testing"]

[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }

# HTTP client (reqwest: full-featured, hyper: raw speed)
reqwest = { version = "0.12", features = ["json", "cookies", "rustls-tls"], default-features = false }
hyper = { version = "1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client-legacy", "tokio", "http1"] }
http-body-util = "0.1"

# CLI
clap = { version = "4", features = ["derive"] }

# Config
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"

# TUI
ratatui = "0.29"
crossterm = "0.28"

# Metrics
hdrhistogram = "7"

# Time
chrono = "0.4"

# Interactive prompts
dialoguer = { version = "0.11", features = ["fuzzy-select"] }

# Misc
anyhow = "1"
thiserror = "2"
csv = "1"
colored = "2"
num_cpus = "1.16"

[profile.release]
opt-level = 3
lto = true
strip = true
codegen-units = 1