dx_http 0.1.0

A robust HTTP client library with support for dynamic serialization
Documentation
[package]
name = "dx_http"
version = "0.1.0"
edition = "2021"
authors = ["Debojyoti Singha debojyoti@swingtechnologies.in"]
description = "A robust HTTP client library with support for dynamic serialization"
license = "Apache-2.0"
repository = "https://github.com/debojyoti452/rust_dx_http.git"
keywords = ["http", "client", "async", "reqwest"]
categories = ["web-programming::http-client"]

[dependencies]
reqwest = { version = "0.12.5", features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.3"
thiserror = "1.0"
tracing = "0.1"

[dev-dependencies]
anyhow = "1.0"