-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 757 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 757 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
[workspace.package]
name = "push-core"
version = "0.1.0"
edition = "2021"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace]
resolver = "2"
members = [
"crates/libs/lib-consumer",
"crates/libs/lib-core",
"crates/services/consumer",
"crates/services/producer",
"crates/services/state_manager",
"crates/services/websocket",
]
[workspace.dependencies]
tokio = { version = "1.35.1", features = ["full", "tracing"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
console-subscriber = "0.2.0"
tokio-util = "0.7.10"
serde = { version = "*", features = ["derive"] }
serde_json = "*"
rand = "0.8.5"
redis = { version = "0.24.0", features = ['tokio-comp'] }
futures = "0.3.26"
futures-util = "0.3.30"