qubit-http 0.5.2

General-purpose HTTP infrastructure for Rust with unified client semantics, secure logging, and built-in SSE decoding
Documentation
[package]
name = "qubit-http"
version = "0.5.2"
edition = "2021"
rust-version = "1.94"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-http"
description = "General-purpose HTTP infrastructure for Rust with unified client semantics, secure logging, and built-in SSE decoding"
homepage = "https://github.com/qubit-ltd/rs-http"
documentation = "https://docs.rs/qubit-http"
readme = "README.md"
keywords = ["http", "sse", "streaming", "network", "qubit"]
categories = ["network-programming", "asynchronous"]
exclude = [
    "coverage.sh",
    "COVERAGE.md",
    "COVERAGE.zh_CN.md",
    ".circleci/*",
    "ci-check.sh",
    ".llvm-cov.toml",
    ".cargo-audit.toml.example",
]

[lib]
name = "qubit_http"
doctest = false

[dependencies]
thiserror = "2.0"
tracing = "0.1"
reqwest = { version = "0.13", features = ["json", "stream", "query", "socks"] }
http = "1.4"
httpdate = "1.0"
url = "2.5"
bytes = { version = "1.11", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
strum = { version = "0.28", features = ["derive"] }
parse-display = "0.10"
serde_json = "1.0"
tokio = { version = "1.52", features = ["time", "net", "macros"] }
tokio-util = { version = "0.7", features = ["rt"] }
async-stream = "0.3"
futures-util = "0.3"

qubit-config = { version = "0.12", path = "../rs-config" }
qubit-datatype = "0.2"
qubit-error = "0.2"
qubit-function = "0.12"
qubit-retry = { version = "0.10", path = "../rs-retry", features = ["tokio"] }

[dev-dependencies]
tokio = { version = "1.52", features = ["full", "test-util"] }
tracing-subscriber = { version = "0.3", features = ["fmt"] }

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

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }