forked from riker-rs/riker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 860 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
[package]
name = "riker"
version = "0.4.2"
authors = ["Lee Smith <[email protected]>"]
edition = "2018"
description = "Easily build fast, highly concurrent and resilient applications. An Actor Framework for Rust."
homepage = "https://riker.rs"
repository = "https://github.com/riker-rs/riker"
license = "MIT"
readme = "README.md"
keywords = ["actors", "actor-model", "async", "cqrs", "event_sourcing"]
[badges]
travis-ci = { repository = "riker-rs/riker" }
[dependencies]
riker-macros = { path = "riker-macros", version = "0.2.0" }
chrono = "0.4"
config = "0.10.1"
futures = { version = "0.3.4", features = ["thread-pool"] }
rand = "0.7"
regex = "1"
uuid = { version = "0.8.1", features = ["v4"] }
pin-utils = "0.1.0"
slog = "2.5"
slog-stdlog = "4.0"
slog-scope = "4.3.0"
num_cpus = "1.13.0"
dashmap = "3"
[dev-dependencies]
riker-testkit = "0.1.0"
log = "0.4"