2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-19 12:03:50 +00:00
async-std/Cargo.toml

40 lines
1 KiB
TOML
Raw Normal View History

2019-08-08 12:44:48 +00:00
[package]
name = "async-std"
version = "0.1.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
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"]
2019-08-08 12:44:48 +00:00
[package.metadata.docs.rs]
2019-08-12 17:50:30 +00:00
features = ["docs"]
rustdoc-args = ["--features 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-14 15:56:05 +00:00
async-task = { git = "ssh://git@github.com/async-rs/async-task.git" }
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-preview = "0.3.0-alpha.17"
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"
[dev-dependencies]
femme = "1.1.0"
2019-08-15 15:03:39 +00:00
surf = "1.0.1"
2019-08-08 12:44:48 +00:00
tempdir = "0.3.7"