async-executor/Cargo.toml

27 lines
704 B
TOML
Raw Normal View History

2020-07-23 10:03:03 +00:00
[package]
name = "async-executor"
2020-11-10 14:56:55 +00:00
version = "1.4.0"
2020-07-23 10:03:03 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Async executor"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/async-executor"
homepage = "https://github.com/smol-rs/async-executor"
2020-07-23 10:03:03 +00:00
documentation = "https://docs.rs/async-executor"
keywords = ["asynchronous", "executor", "single", "multi", "spawn"]
categories = ["asynchronous", "concurrency"]
[dependencies]
2020-09-20 00:36:54 +00:00
async-task = "4.0.0"
2020-08-26 21:46:09 +00:00
concurrent-queue = "1.2.2"
fastrand = "1.3.4"
2020-10-09 12:49:25 +00:00
futures-lite = "1.11.0"
2020-08-26 21:46:09 +00:00
once_cell = "1.4.1"
2021-04-18 13:39:34 +00:00
slab = "0.4.2"
2020-07-23 10:03:03 +00:00
[dev-dependencies]
2020-08-26 21:46:09 +00:00
async-channel = "1.4.1"
2020-10-08 12:28:45 +00:00
async-io = "1.1.9"
2020-07-23 10:03:03 +00:00
easy-parallel = "3.1.0"
2020-10-08 12:28:45 +00:00
num_cpus = "1.13.0"