You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
async-std/Cargo.toml

65 lines
1.6 KiB
TOML

5 years ago
[package]
name = "async-std"
version = "0.99.11"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
"Contributors to async-std",
]
5 years ago
edition = "2018"
license = "Apache-2.0/MIT"
5 years ago
repository = "https://github.com/async-rs/async-std"
homepage = "https://async.rs"
5 years ago
documentation = "https://docs.rs/async-std"
description = "Async version of the Rust standard library"
keywords = ["async", "await", "future", "std", "task"]
categories = ["asynchronous", "concurrency", "network-programming"]
readme = "README.md"
5 years ago
[package.metadata.docs.rs]
features = ["docs"]
5 years ago
rustdoc-args = ["--cfg", "feature=\"docs\""]
5 years ago
[features]
default = []
docs = ["unstable", "attributes"]
unstable = ["broadcaster"]
attributes = ["async-attributes"]
5 years ago
[dependencies]
async-attributes = { version = "1.1.0", optional = true }
async-macros = "1.0.0"
async-task = "1.0.0"
broadcaster = { version = "0.2.6", optional = true, default-features = false, features = ["default-channels"] }
crossbeam-channel = "0.3.9"
crossbeam-deque = "0.7.1"
crossbeam-utils = "0.6.6"
futures-core = "0.3.0"
futures-io = "0.3.0"
futures-timer = "1.0.2"
kv-log-macro = "1.0.4"
5 years ago
log = { version = "0.4.8", features = ["kv_unstable"] }
memchr = "2.2.1"
5 years ago
mio = "0.6.19"
mio-uds = "0.6.7"
num_cpus = "1.10.1"
once_cell = "1.2.0"
pin-project-lite = "0.1"
5 years ago
pin-utils = "0.1.0-alpha.4"
slab = "0.4.2"
[dev-dependencies]
femme = "1.2.0"
rand = "0.7.2"
# surf = "1.0.2"
tempdir = "0.3.7"
futures = "0.3.0"
[[test]]
name = "stream"
required-features = ["unstable"]
[[example]]
name = "tcp-ipv4-and-6-echo"
required-features = ["unstable"]