http-client 6.0.0

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-trait]
version = "0.1.37"

[dependencies.futures-util]
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"
[dev-dependencies.async-std]
features = ["unstable", "attributes"]
version = "1.6.0"

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

[dev-dependencies.tide]
version = "0.9.0"

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

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

[package]
authors = ["Yoshua Wuyts <yoshuawuyts@gmail.com>", "dignifiedquire <me@dignifiedquire.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.0.0"
[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"]
optional = true
version = "0.3.25"