-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 873 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 873 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
[package]
name = "commonware-actor"
edition.workspace = true
publish = true
version.workspace = true
license.workspace = true
description = "Coordinate actors with messages of varying priority."
readme = "README.md"
homepage.workspace = true
repository = "https://github.com/commonwarexyz/monorepo/tree/main/actor"
documentation = "https://docs.rs/commonware-actor"
[lints]
workspace = true
[dependencies]
commonware-actor-macros.workspace = true
commonware-macros = { workspace = true, features = ["std"] }
commonware-runtime.workspace = true
commonware-utils = { workspace = true, features = ["std"] }
futures.workspace = true
thiserror.workspace = true
tracing.workspace = true
[lib]
bench = false
[dev-dependencies]
criterion = { workspace = true, features = ["async"] }
rand.workspace = true
[[bench]]
name = "actor"
harness = false
path = "src/benches/bench.rs"