async-executor/Cargo.toml

36 lines
886 B
TOML
Raw Normal View History

2020-07-23 10:03:03 +00:00
[package]
name = "async-executor"
2021-04-24 08:56:59 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
2022-11-09 02:34:15 +00:00
version = "1.5.0"
2020-07-23 10:03:03 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.48"
2020-07-23 10:03:03 +00:00
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"
2020-07-23 10:03:03 +00:00
keywords = ["asynchronous", "executor", "single", "multi", "spawn"]
categories = ["asynchronous", "concurrency"]
2022-01-08 12:33:35 +00:00
exclude = ["/.*"]
2020-07-23 10:03:03 +00:00
[dependencies]
async-lock = "2.6"
2020-09-20 00:36:54 +00:00
async-task = "4.0.0"
2022-11-09 02:33:22 +00:00
concurrent-queue = "2.0.0"
2020-08-26 21:46:09 +00:00
fastrand = "1.3.4"
2020-10-09 12:49:25 +00:00
futures-lite = "1.11.0"
2021-12-30 00:36:58 +00:00
slab = "0.4.4"
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"
criterion = { version = "0.4.0", default-features = false, features = ["cargo_bench_support"] }
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"
once_cell = "1.16.0"
[[bench]]
name = "executor"
harness = false