forked from smol-rs/async-executor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (37 loc) · 987 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "async-executor"
version = "1.4.1"
authors = ["Stjepan Glavina <[email protected]>"]
edition = "2018"
description = "Async executor"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-executor"
homepage = "https://github.com/smol-rs/async-executor"
documentation = "https://docs.rs/async-executor"
keywords = ["asynchronous", "executor", "single", "multi", "spawn"]
categories = ["asynchronous", "concurrency"]
[dependencies]
async-task = "4.0.0"
concurrent-queue = "1.2.2"
fastrand = "1.3.4"
futures-lite = "1.11.0"
once_cell = "1.4.1"
parking_lot = "0.11.1"
slab = "0.4.2"
cache-padded="1"
crossbeam-deque="0.8"
[dev-dependencies]
async-oneshot="0.5"
async-channel = "1.4.1"
async-io = "1.1.9"
easy-parallel = "3.1.0"
scopeguard="1.1"
criterion = "0.3"
num_cpus="1"
[profile.release]
incremental = true
debug = 2 # Set this to 1 or 2 to get more useful backtraces in debugger.
lto = 'thin'
[[bench]]
name = "my_benchmark"
harness = false