-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (31 loc) · 934 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
[workspace]
members = ["crm", "crm-metadata", "crm-send", "user-stat"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.86"
chrono = { version = "0.4.38", features = ["serde"] }
crm-metadata = { path = "crm-metadata" }
crm-send = { path = "crm-send" }
derive_builder = "0.20.0"
futures = "0.3.30"
itertools = "0.12.1"
prost = "0.12.6"
prost-build = "0.12.6"
prost-types = "0.12.6"
proto-builder-trait = "0.6.1"
rand = "0.8.5"
serde = { version = "1.0.200", features = ["derive"] }
serde_yaml = "0.9.34"
sqlx = { version = "0.7.4", features = [
"chrono",
"runtime-tokio",
"tls-rustls",
"postgres",
] }
tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio-stream = "0.1.15"
tonic = { version = "0.11.0", features = ["zstd", "tls"] }
tonic-build = "0.11.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
user-stat = { path = "user-stat" }