forked from mirror/async-std
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.
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[package]
|
|
name = "async-std"
|
|
version = "0.99.11"
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>",
|
|
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
|
|
"Contributors to async-std",
|
|
]
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/async-rs/async-std"
|
|
homepage = "https://async.rs"
|
|
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"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["docs"]
|
|
rustdoc-args = ["--cfg", "feature=\"docs\""]
|
|
|
|
[features]
|
|
docs = ["unstable"]
|
|
unstable = ["broadcaster"]
|
|
|
|
[dependencies]
|
|
async-macros = "1.0.0"
|
|
async-task = "1.0.0"
|
|
crossbeam-channel = "0.3.9"
|
|
crossbeam-deque = "0.7.1"
|
|
crossbeam-utils = "0.6.6"
|
|
futures-core-preview = "=0.3.0-alpha.19"
|
|
futures-io-preview = "=0.3.0-alpha.19"
|
|
futures-timer = "1.0.2"
|
|
log = { version = "0.4.8", features = ["kv_unstable"] }
|
|
memchr = "2.2.1"
|
|
mio = "0.6.19"
|
|
mio-uds = "0.6.7"
|
|
num_cpus = "1.10.1"
|
|
once_cell = "1.2.0"
|
|
slab = "0.4.2"
|
|
kv-log-macro = "1.0.4"
|
|
broadcaster = { version = "0.2.6", optional = true, default-features = false, features = ["default-channels"] }
|
|
pin-project-lite = "0.1"
|
|
|
|
[dev-dependencies]
|
|
femme = "1.2.0"
|
|
rand = "0.7.2"
|
|
# surf = "1.0.2"
|
|
tempdir = "0.3.7"
|
|
futures-preview = { version = "=0.3.0-alpha.19", features = ["async-await"] }
|
|
|
|
# These are used by the book for examples
|
|
futures-channel-preview = "=0.3.0-alpha.19"
|
|
futures-util-preview = "=0.3.0-alpha.19"
|