ehttp 0.3.1

Minimal HTTP client for both native and WASM
Documentation
[dependencies.document-features]
version = "0.2"

[dependencies.web-sys]
features = ["AbortSignal", "Headers", "ReadableStream", "Request", "RequestInit", "RequestMode", "Response", "Window"]
version = "0.3.52"

[features]
default = []
native-async = ["async-channel"]
streaming = ["dep:wasm-streams", "dep:futures-util"]

[lib]

[package]
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
categories = ["network-programming", "wasm", "web-programming"]
description = "Minimal HTTP client for both native and WASM"
edition = "2018"
homepage = "https://github.com/emilk/ehttp"
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
keywords = ["http", "wasm", "native", "web"]
license = "MIT OR Apache-2.0"
name = "ehttp"
readme = "README.md"
repository = "https://github.com/emilk/ehttp"
rust-version = "1.65"
version = "0.3.1"
[package.metadata.docs.rs]
all-features = true
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.async-channel]
optional = true
version = "1.8"

[target."cfg(not(target_arch = \"wasm32\"))".dependencies.ureq]
version = "2.0"
[target."cfg(target_arch = \"wasm32\")".dependencies.futures-util]
optional = true
version = "0.3"

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

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

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

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