-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
76 lines (68 loc) · 1.56 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "smolscale"
version = "0.4.11"
authors = ["nullchinchilla <[email protected]>"]
edition = "2021"
description="A high-performance async-task scheduler"
license="ISC"
repository="https://github.com/geph-official/smolscale"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-task="4"
async-executor = "1.4.0"
once_cell= "1.5.2"
futures-lite = "1.11.3"
pin-project-lite = "0.2.1"
scopeguard= "1.1.0"
event-listener= "2.5.1"
async-io= "2"
anyhow= "1.0.37"
slab= "0.4.2"
log= "0.4.16"
# concurrent-queue="1.2.2"
num_cpus="1"
# rtrb="0.1.4"
# spin={version="0.9", default-features=false, features=["mutex", "spin_mutex"]}
backtrace="0.3"
fastrand="1"
# futures-intrusive = "0.4"
# crossbeam-queue="0.3"
thread_local="1"
cache-padded="1"
# crossbeam-deque = "0.8.1"
# flume = "0.10.12"
# stacker="0.1"
# parking_lot = "0.11.1"
async-global-executor={version="2", features=["async-io"]}
# moka = "0.9.4"
dashmap = "5.4.0"
tabwriter = "1.2.1"
st3 = "0.4"
crossbeam-queue = "0.3.6"
rustc-hash = "1.1.0"
crossbeam-utils = "0.8.12"
waker-fn = "1.1.0"
smallvec = "1.10.0"
# concurrent-queue = "2.0.0"
parking_lot = "0.12.1"
futures-util = "0.3.25"
async-channel = "1.5.1"
async-compat = "0.2.3"
async-event = "0.2.1"
tachyonix = "0.3.0"
pollster = "0.3.0"
[profile.release]
panic = "abort"
opt-level = 3
overflow-checks = true
debug=2
# lto=true
# codegen-units=1
[dev-dependencies]
criterion = "0.3"
env_logger="0.9"
async-channel= "1.5.1"
async-oneshot= "0.4.2"
[[bench]]
name = "my_benchmark"
harness = false