1 | [package] |
2 | name = "async-executor" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Create "v1.x.y" git tag |
6 | version = "1.8.0" |
7 | authors = ["Stjepan Glavina <stjepang@gmail.com>" ] |
8 | edition = "2021" |
9 | rust-version = "1.61" |
10 | description = "Async executor" |
11 | license = "Apache-2.0 OR MIT" |
12 | repository = "https://github.com/smol-rs/async-executor" |
13 | keywords = ["asynchronous" , "executor" , "single" , "multi" , "spawn" ] |
14 | categories = ["asynchronous" , "concurrency" ] |
15 | exclude = ["/.*" ] |
16 | |
17 | [dependencies] |
18 | async-lock = "3.0.0" |
19 | async-task = "4.0.0" |
20 | concurrent-queue = "2.0.0" |
21 | fastrand = "2.0.0" |
22 | futures-lite = { version = "2.0.0" , default-features = false } |
23 | slab = "0.4.4" |
24 | |
25 | [target.'cfg(target_family = "wasm")'.dependencies] |
26 | futures-lite = { version = "2.0.0" , default-features = false, features = ["std" ] } |
27 | |
28 | [dev-dependencies] |
29 | async-channel = "2.0.0" |
30 | async-io = "2.1.0" |
31 | criterion = { version = "0.4.0" , default-features = false, features = ["cargo_bench_support" ] } |
32 | easy-parallel = "3.1.0" |
33 | event-listener = "3.0.0" |
34 | fastrand = "2.0.0" |
35 | futures-lite = "2.0.0" |
36 | once_cell = "1.16.0" |
37 | |
38 | [[bench]] |
39 | name = "executor" |
40 | harness = false |
41 | |