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.
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "async-std"
|
|
version = "0.99.4"
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>",
|
|
"The async-std Project Developers",
|
|
]
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/async-rs/async-std"
|
|
homepage = "https://github.com/async-rs/async-std"
|
|
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 = []
|
|
|
|
[dependencies]
|
|
async-task = "1.0.0"
|
|
cfg-if = "0.1.9"
|
|
crossbeam-channel = "0.3.9"
|
|
futures-timer = "0.3.0"
|
|
lazy_static = "1.3.0"
|
|
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.0"
|
|
pin-utils = "0.1.0-alpha.4"
|
|
slab = "0.4.2"
|
|
|
|
[dependencies.futures-preview]
|
|
version = "0.3.0-alpha.18"
|
|
features = ["async-await", "nightly"]
|
|
|
|
[dev-dependencies]
|
|
femme = "1.1.0"
|
|
tempdir = "0.3.7"
|
|
surf = "1.0.1"
|