async-std 1.11.0

Async version of the Rust standard library
Documentation
[[example]]
name = "tcp-ipv4-and-6-echo"
required-features = ["unstable"]

[[example]]
name = "surf-web"
required-features = ["surf"]

[[test]]
name = "stream"
required-features = ["unstable"]
[dependencies.async-attributes]
optional = true
version = "1.1.1"

[dependencies.async-channel]
optional = true
version = "1.5.1"

[dependencies.async-lock]
optional = true
version = "2.3.0"

[dependencies.crossbeam-utils]
optional = true
version = "0.8.0"

[dependencies.futures-core]
default-features = false
optional = true
version = "0.3.4"

[dependencies.futures-io]
optional = true
version = "0.3.4"

[dependencies.kv-log-macro]
optional = true
version = "1.0.6"

[dependencies.log]
features = ["kv_unstable"]
optional = true
version = "0.4.8"

[dependencies.memchr]
optional = true
version = "2.3.3"

[dependencies.num_cpus]
optional = true
version = "1.12.0"

[dependencies.once_cell]
optional = true
version = "1.3.1"

[dependencies.pin-project-lite]
optional = true
version = "0.2.0"

[dependencies.pin-utils]
optional = true
version = "0.1.0-alpha.4"

[dependencies.slab]
optional = true
version = "0.4.2"

[dependencies.surf]
optional = true
version = "2.0.0"
[dev-dependencies.femme]
version = "2.1.1"

[dev-dependencies.futures]
version = "0.3.4"

[dev-dependencies.rand]
version = "0.8.0"

[dev-dependencies.rand_xorshift]
version = "0.3.0"

[dev-dependencies.tempfile]
version = "3.1.0"

[features]
alloc = ["futures-core/alloc", "pin-project-lite"]
attributes = ["async-attributes"]
default = ["std", "async-global-executor", "async-io", "futures-lite", "kv-log-macro", "log", "num_cpus", "pin-project-lite", "gloo-timers"]
docs = ["attributes", "unstable", "default"]
std = ["alloc", "crossbeam-utils", "futures-core/std", "futures-io", "memchr", "once_cell", "pin-utils", "slab", "wasm-bindgen-futures", "futures-channel", "async-channel", "async-lock"]
tokio02 = ["async-global-executor/tokio02"]
tokio03 = ["async-global-executor/tokio03"]
tokio1 = ["async-global-executor/tokio"]
unstable = ["std", "async-io", "async-process"]

[package]
authors = ["Stjepan Glavina <stjepang@gmail.com>", "Yoshua Wuyts <yoshuawuyts@gmail.com>", "Friedel Ziegelmayer <me@dignifiedquire.com>", "Contributors to async-std"]
categories = ["asynchronous", "concurrency", "network-programming"]
description = "Async version of the Rust standard library"
documentation = "https://docs.rs/async-std"
edition = "2018"
homepage = "https://async.rs"
keywords = ["async", "await", "future", "std", "task"]
license = "Apache-2.0/MIT"
name = "async-std"
readme = "README.md"
repository = "https://github.com/async-rs/async-std"
version = "1.11.0"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[target."cfg(not(target_os = \"unknown\"))".dependencies.async-global-executor]
features = ["async-io"]
optional = true
version = "2.0.0"

[target."cfg(not(target_os = \"unknown\"))".dependencies.async-io]
optional = true
version = "1.0.1"

[target."cfg(not(target_os = \"unknown\"))".dependencies.async-process]
optional = true
version = "1.0.1"

[target."cfg(not(target_os = \"unknown\"))".dependencies.futures-lite]
optional = true
version = "1.0.0"
[target."cfg(target_arch = \"wasm32\")".dependencies.futures-channel]
optional = true
version = "0.3.4"

[target."cfg(target_arch = \"wasm32\")".dependencies.gloo-timers]
features = ["futures"]
optional = true
version = "0.2.1"

[target."cfg(target_arch = \"wasm32\")".dependencies.wasm-bindgen-futures]
optional = true
version = "0.4.10"
[target."cfg(target_arch = \"wasm32\")".dev-dependencies.getrandom]
features = ["js"]
version = "0.2.0"

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