async-std/Cargo.toml

58 lines
1.6 KiB
TOML
Raw Normal View History

2019-08-08 12:44:48 +00:00
[package]
name = "async-std"
version = "0.99.10"
2019-08-16 14:54:39 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Yoshua Wuyts <yoshuawuyts@gmail.com>",
"Contributors to async-std",
2019-08-16 14:54:39 +00:00
]
2019-08-08 12:44:48 +00:00
edition = "2018"
license = "Apache-2.0/MIT"
2019-08-15 10:57:20 +00:00
repository = "https://github.com/async-rs/async-std"
2019-10-25 21:14:57 +00:00
homepage = "https://async.rs"
2019-08-08 12:44:48 +00:00
documentation = "https://docs.rs/async-std"
2019-08-12 18:29:32 +00:00
description = "Async version of the Rust standard library"
keywords = ["async", "await", "future", "std", "task"]
categories = ["asynchronous", "concurrency", "network-programming"]
readme = "README.md"
2019-08-08 12:44:48 +00:00
[package.metadata.docs.rs]
2019-08-12 17:50:30 +00:00
features = ["docs"]
2019-08-16 15:30:56 +00:00
rustdoc-args = ["--cfg", "feature=\"docs\""]
2019-08-08 12:44:48 +00:00
[features]
docs = ["unstable"]
unstable = ["broadcaster"]
2019-08-08 12:44:48 +00:00
[dependencies]
async-macros = "1.0.0"
2019-08-16 14:54:39 +00:00
async-task = "1.0.0"
crossbeam-channel = "0.3.9"
2019-09-16 14:03:02 +00:00
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"
lazy_static = "1.4.0"
2019-08-08 12:44:48 +00:00
log = { version = "0.4.8", features = ["kv_unstable"] }
2019-08-12 10:43:44 +00:00
memchr = "2.2.1"
2019-08-08 12:44:48 +00:00
mio = "0.6.19"
mio-uds = "0.6.7"
num_cpus = "1.10.1"
2019-08-08 12:44:48 +00:00
pin-utils = "0.1.0-alpha.4"
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"
2019-08-08 12:44:48 +00:00
[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"