2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 18:59:55 +00:00
async-std/Cargo.toml

47 lines
1.1 KiB
TOML
Raw Normal View History

2019-08-08 12:44:48 +00:00
[package]
name = "async-std"
2019-08-22 03:04:31 +00:00
version = "0.99.4"
2019-08-16 14:54:39 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"The async-std Project Developers",
]
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"
homepage = "https://github.com/async-rs/async-std"
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]
2019-08-12 17:50:30 +00:00
docs = []
2019-08-08 12:44:48 +00:00
[dependencies]
2019-08-16 14:54:39 +00:00
async-task = "1.0.0"
2019-08-08 12:44:48 +00:00
cfg-if = "0.1.9"
crossbeam-channel = "0.3.9"
2019-08-08 12:44:48 +00:00
futures-timer = "0.3.0"
lazy_static = "1.3.0"
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.0"
pin-utils = "0.1.0-alpha.4"
slab = "0.4.2"
[dependencies.futures-preview]
2019-08-26 21:24:20 +00:00
version = "0.3.0-alpha.18"
features = ["async-await", "nightly"]
2019-08-08 12:44:48 +00:00
[dev-dependencies]
femme = "1.1.0"
tempdir = "0.3.7"
2019-08-20 05:24:13 +00:00
surf = "1.0.1"