http-client 6.5.1

Types and traits for http clients.
Documentation
[dependencies.async-h1]
optional = true
version = "2.0.0"

[dependencies.async-native-tls]
optional = true
version = "0.3.1"

[dependencies.async-std]
default-features = false
optional = true
version = "1.6.0"

[dependencies.async-tls]
optional = true
version = "0.10.0"

[dependencies.async-trait]
version = "0.1.37"

[dependencies.cfg-if]
version = "1.0.0"

[dependencies.dashmap]
version = "4.0.2"

[dependencies.deadpool]
optional = true
version = "0.7.0"

[dependencies.futures]
optional = true
version = "0.3.8"

[dependencies.futures-util]
features = ["io"]
optional = true
version = "0.3.5"

[dependencies.http-types]
version = "2.3.0"

[dependencies.hyper]
features = ["tcp"]
optional = true
version = "0.13.6"

[dependencies.hyper-tls]
optional = true
version = "0.4.3"

[dependencies.log]
version = "0.4.7"

[dependencies.rustls_crate]
optional = true
package = "rustls"
version = "0.18"

[dependencies.tokio]
features = ["time"]
optional = true
version = "0.2"
[dev-dependencies.async-std]
features = ["unstable", "attributes"]
version = "1.6.0"

[dev-dependencies.getrandom]
features = ["js"]
version = "0.2"

[dev-dependencies.mockito]
version = "0.23.3"

[dev-dependencies.portpicker]
version = "0.1.0"

[dev-dependencies.serde]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tide]
default-features = false
features = ["h1-server"]
version = "0.15.0"

[dev-dependencies.tide-rustls]
version = "0.1.4"

[dev-dependencies.tokio]
features = ["macros"]
version = "0.2.21"

[features]
curl_client = ["isahc", "async-std"]
default = ["h1_client", "native-tls"]
docs = ["h1_client", "curl_client", "wasm_client", "hyper_client"]
h1_client = ["async-h1", "async-std", "deadpool", "futures"]
hyper_client = ["hyper", "hyper-tls", "http-types/hyperium_http", "futures-util", "tokio"]
native-tls = ["async-native-tls"]
native_client = ["curl_client", "wasm_client"]
rustls = ["async-tls", "rustls_crate"]
unstable-config = []
wasm_client = ["js-sys", "web-sys", "wasm-bindgen", "wasm-bindgen-futures", "futures", "async-std"]

[package]
authors = ["Yoshua Wuyts <yoshuawuyts@gmail.com>", "dignifiedquire <me@dignifiedquire.com>", "Jeremiah Senkpiel <fishrock123@rocketmail.com>"]
categories = ["asynchronous", "web-programming", "web-programming::http-client", "web-programming::websocket"]
description = "Types and traits for http clients."
documentation = "https://docs.rs/http-client"
edition = "2018"
keywords = ["http", "service", "client", "futures", "async"]
license = "MIT OR Apache-2.0"
name = "http-client"
readme = "README.md"
repository = "https://github.com/http-rs/http-client"
version = "6.5.1"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.isahc]
default-features = false
features = ["http2"]
optional = true
version = "0.9"
[target."cfg(target_arch = \"wasm32\")".dependencies.futures]
optional = true
version = "0.3.1"

[target."cfg(target_arch = \"wasm32\")".dependencies.js-sys]
optional = true
version = "0.3.25"

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen]
optional = true
version = "0.2.48"

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures]
optional = true
version = "0.4.5"

[target."cfg(target_arch = \"wasm32\")".dependencies.web-sys]
features = ["AbortSignal", "Headers", "ObserverCallback", "ReferrerPolicy", "Request", "RequestCache", "RequestCredentials", "RequestInit", "RequestMode", "RequestRedirect", "Response", "Window", "WorkerGlobalScope"]
optional = true
version = "0.3.25"