http-stat 0.6.1

httpstat visualizes curl(1) statistics in a way of beauty and clarity.
Documentation
[package]
name = "http-stat"
version = "0.6.1"
authors = ["Tree Xie <tree.xie@outlook.com>"]
edition = "2021"
categories = ["web-programming"]
keywords = ["http", "statistics", "httpstat", "http2", "http3"]
description = "httpstat visualizes curl(1) statistics in a way of beauty and clarity."
license = "MIT"
homepage = "https://github.com/vicanso/http-stat-rs"
repository = "https://github.com/vicanso/http-stat-rs"
exclude = ["Cargo.lock"]
readme = "./README.md"
rust-version = "1.88"
autobins = false

[[bin]]
name = "httpstat"
path = "bin/httpstat.rs"


[dependencies]
brotli-decompressor = "5.0.0"
bytes = "1.11.1"
bytesize = "2.3.1"
chrono = "0.4.44"
clap = { version = "4.6.0", features = ["derive"] }
flate2 = { version = "1.1.9", default-features = false, features = ["zlib"] }
futures = "0.3.32"
h3 = "0.0.8"
h3-quinn = "0.0.10"
heck = "0.5.0"
hickory-resolver = { version = "0.25.2", features = [
    "tokio",
    "https-ring",
    "tls-ring",
    "webpki-roots",
] }
http = "1.4.0"
http-body-util = "0.1.3"
humantime = "2.3.0"
hyper = { version = "1.9.0", features = ["client", "http1", "http2"] }
hyper-util = { version = "0.1.20", features = ["tokio"] }
mimalloc = "0.1.48"
nu-ansi-term = "0.50.3"
quinn = { version = "0.11.9", default-features = false, features = [
    "runtime-tokio",
    "rustls",
    "ring",
] }
rustls = "0.23.36"
rustls-native-certs = "0.8.3"
rustls-pki-types = "1.14.0"
serde_json = "1.0.149"
snafu = "0.9.0"
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["rt", "net", "fs"] }
tokio-rustls = { version = "0.26.4", features = [
    "ring",
], default-features = false }
tonic = { version = "0.14.5", features = [
    "transport",
], default-features = false }
tonic-health = "0.14.5"
tower-service = "0.3.3"
unicode-truncate = "2.0.1"
x509-parser = "0.18.1"
zstd = { version = "0.13.3", default-features = false }


[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
strip = true
panic = "abort"

[profile.release.package.brotli-decompressor]
opt-level = 3

[profile.release.package.zstd]
opt-level = 3

[profile.release.package.rustls]
opt-level = 3

[profile.release.package.httparse]
opt-level = 3