Skip to content

Attempt to optimize LocalExecutor #144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "async-executor"
version = "1.13.2"
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
edition = "2021"
rust-version = "1.63"
rust-version = "1.68"
description = "Async executor"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-executor"
Expand All @@ -18,6 +18,9 @@ exclude = ["/.*"]
# Adds support for executors optimized for use in static variables.
static = []

[lib]
bench = false

[dependencies]
async-task = "4.4.0"
concurrent-queue = "2.5.0"
Expand All @@ -44,5 +47,10 @@ name = "executor"
harness = false
required-features = ["static"]

[[bench]]
name = "local_executor"
harness = false
required-features = ["static"]

[package.metadata.docs.rs]
all-features = true
Loading