statico 0.1.13

A High-performance HTTP webserver that serves static responses at the speed of light.
[[bin]]
name = "statico"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bytes]
version = "1.11"

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

[dependencies.http-body]
version = "1.0.1"

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

[dependencies.http_wire]
version = "0.1.1"

[dependencies.httparse]
version = "1.10.1"

[dependencies.humantime]
version = "2.3.0"

[dependencies.hyper]
features = ["full"]
version = "1.8"

[dependencies.hyper-util]
features = ["full"]
version = "0.1"

[dependencies.num_cpus]
version = "1.17"

[dependencies.pingora-timeout]
version = "0.6.0"

[dependencies.socket2]
features = ["all"]
version = "0.6"

[dependencies.tokio]
features = ["full"]
version = "1.48"

[dependencies.tracing]
version = "0.1"

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

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

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

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

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