statico 0.3.3

A High-performance HTTP webserver that serves static responses at the speed of light.
[package]
name = "statico"
version = "0.3.3"
edition = "2021"
authors = ["Nicola Bonelli <nicola@larthia.com>"]
description = "A High-performance HTTP webserver that serves static responses at the speed of light."
license = "MIT OR Apache-2.0"
repository = "https://github.com/awgn/statico"
readme = "README.md"
keywords = ["cli", "utility", "benchmark", "http"]
categories = ["command-line-utilities", "network-programming"]

[dependencies]
clap = { version = "4.5", features = ["derive"] }
hyper = { version = "1.8", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
tokio = { version = "1.49", features = ["full"] }
http-body-util = "0.1"
bytes = "1.11"
socket2 = { version = "0.6", features = ["all"] }
anyhow = "1.0"
num_cpus = "1.17"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
httparse = "1.10.1"
http_wire = "0.2.5"
http-body = "1.0.1"
pingora-timeout = "0.6.0"
humantime = "2.3.0"
owo-colors = "4.2.3"
contatori = "0.7.5"
ctrlc = "3.5.1"
pin-project-lite = "0.2.16"

[target.'cfg(target_os = "linux")'.dependencies]
tokio-uring = { version = "0.5.0", optional = true }

[features]
io_uring = ["tokio-uring"]

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