forked from dendrite2go/archetype-rust-axon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.24 KB
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
[package]
name = "dendrite_example"
version = "0.1.0"
authors = ["Jeroen van Maanen"]
edition = "2018"
description = "Event Sourcing and CQRS in Rust with AxonServer: Example project."
readme = "README.md"
homepage = "https://github.com/dendrite2go/archetype-rust-axon"
repository = "https://github.com/dendrite2go/archetype-rust-axon"
license = "MIT"
keywords = ["event-sourcing", "CQRS", "AxonServer"]
categories = ["web-programming"]
include = ["/src/**/*", "/proto/**/*", "/Cargo.*", "/build.rs", "/README.md", "/LICENSE"]
[dependencies]
anyhow = "1.0"
async-lock = "^2.3"
async-stream = "^0.3"
base64 = "0.13.0"
bytes = "^1.0"
dendrite = "^0.6" # { path = "../rustic-dendrite" } #
dendrite_auth = "^0.4" # { path = "../rustic-dendrite-auth" } #
dendrite_macros = "^0.3" # { path = "../rustic-dendrite-macros" } #
elasticsearch = "7.10.1-alpha.1"
env_logger = "0.7.1"
futures-core = "^0.3"
futures-util = "^0.3"
jwt = "^0.13"
lazy_static = "^1.4"
log = "^0.4"
pem = "^0.8"
rand_core = "^0.5"
rsa = "^0.3"
serde = "~1"
serde_json = "~1"
sha2 = "0.9.2"
sshkeys = "^0.3"
tokio = { version = "^1.0", features = ["macros","rt-multi-thread","time"] }
tonic = "^0.4"
prost = "^0.7"
uuid = { version = "^0.8.2", features = ["v4"] }
[build-dependencies]
tonic-build = "^0.4"