[package]
name = "reqkit"
version = "0.1.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Production-focused client-side HTTP requester (hyper + rustls): HTTPS-only, pooling, timeouts, body caps, gzip/deflate/br decoding."
readme = "README.md"
repository = "https://github.com/efexos/reqkit"
documentation = "https://docs.rs/reqkit"
keywords = ["http", "client", "hyper", "rustls", "api"]
categories = ["web-programming::http-client", "network-programming", "asynchronous"]
rust-version = "1.85"
[lib]
path = "source/lib.rs"
[features]
default = ["json", "form"]
json = ["dep:serde_json"]
json5 = ["dep:json5", "dep:serde_json"]
form = ["dep:serde_urlencoded"]
[dependencies]
bytes = "1.11.0"
http-body-util = "0.1.3"
hyper = "1.8.1"
hyper-util = "0.1.19"
hyper-rustls = { version = "0.27.7", features = ["http2"] }
rustls = { version = "0.23.36", features = ["aws_lc_rs"] }
rustls-platform-verifier = "0.6.2"
brotli = "8.0.2"
flate2 = "1.1.8"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "time"] }
thiserror = "2.0.18"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", optional = true }
serde_urlencoded = { version = "0.7.1", optional = true }
json5 = { version = "1.3.0", optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]