-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 799 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 799 Bytes
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
[package]
name = "glommactor"
version = "0.1.0"
authors = ["Alexandra Clifford <a13xandra.cliff0rd@gmail.com>"]
edition = "2021"
[dependencies]
thiserror = "2.0.9"
futures = "0.3.31"
glommio = { version = "0.9.0" }
flume = {version= "0.11.1", features=["async"]}
async-trait = "0.1.84"
tracing = {version = "0.1.41"}
async-priority-channel = "0.2.0"
async-broadcast = "0.7.2"
[dev-dependencies]
tracing-subscriber = { version="0.3.0"}
bencher = "0.1.5"
act-zero = {version = "0.4.0", git="https://github.com/nand-nor/act-zero", rev="eb01aec", features=["glommio"], default-features=false }
[[example]]
name = "simple"
[[example]]
name = "supervised_simple"
[[example]]
name = "supervisor_core"
[[example]]
name = "priority"
[[bench]]
name = "actors"
path = "benches/actors.rs"
harness = false