reqkit 0.1.0

Production-focused client-side HTTP requester (hyper + rustls): HTTPS-only, pooling, timeouts, body caps, gzip/deflate/br decoding.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "reqkit"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-focused client-side HTTP requester (hyper + rustls): HTTPS-only, pooling, timeouts, body caps, gzip/deflate/br decoding."
documentation = "https://docs.rs/reqkit"
readme = "README.md"
keywords = [
    "http",
    "client",
    "hyper",
    "rustls",
    "api",
]
categories = [
    "web-programming::http-client",
    "network-programming",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/efexos/reqkit"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = [
    "json",
    "form",
]
form = ["dep:serde_urlencoded"]
json = ["dep:serde_json"]
json5 = [
    "dep:json5",
    "dep:serde_json",
]

[lib]
name = "reqkit"
path = "source/lib.rs"

[dependencies.brotli]
version = "8.0.2"

[dependencies.bytes]
version = "1.11.0"

[dependencies.flate2]
version = "1.1.8"

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

[dependencies.hyper]
version = "1.8.1"

[dependencies.hyper-rustls]
version = "0.27.7"
features = ["http2"]

[dependencies.hyper-util]
version = "0.1.19"

[dependencies.json5]
version = "1.3.0"
optional = true

[dependencies.rustls]
version = "0.23.36"
features = ["aws_lc_rs"]

[dependencies.rustls-platform-verifier]
version = "0.6.2"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.149"
optional = true

[dependencies.serde_urlencoded]
version = "0.7.1"
optional = true

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.49.0"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]