-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1.11 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
[package]
name = "acton-core"
version = "3.0.1-beta.1"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "Acton Core provides the core functionality and abstractions used by the Acton Reactive crate. It includes the essential building blocks for creating reactive and distributed systems."
documentation = "https://github.com/Govcraft/acton-reactive/blob/main/README.md"
homepage = "https://github.com/Govcraft/acton-reactive"
repository = "https://github.com/Govcraft/acton-reactive"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
unused = "allow"
[dependencies]
dashmap = "6.1.0"
tokio = { version = "1.37.0", features = ["full"] }
async-trait = "0.1.80"
anyhow = "1.0.82"
tokio-util = { version = "0.7.10", features = ["rt"] }
tracing = "0.1.40"
futures = "0.3.30"
static_assertions = "1.1.0"
dyn-clone = "1.0.17"
derive-new = "0.7.0"
acton-ern = "2.1.1-alpha"
[dev-dependencies]
dashmap = "6.1.0"
tokio = { version = "1.37.0", features = ["full"] }
acton_test = ">=3.0.0-beta"
tokio-util = { version = "0.7.10", features = ["rt"] }
acton-ern = "2.1.1-alpha"