-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 783 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 783 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
[workspace]
members = [
"api",
"queue",
"broadcaster",
"compiler",
"core"
]
resolver = "2"
[workspace.package]
version = "0.1.0-beta.1"
[workspace.dependencies]
axum = "0.7.5"
tokio = { version = "1.37.0", features = ["full", "macros"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt"] }
redis = { version = "0.25.3", features = ["tokio-comp", "connection-manager"] }
nanoid = "0.4.0"
thiserror = "1.0.59"
futures = "0.3.30"
criterion = { version = "0.5.1", features = ["html_reports", "async_tokio"] }
rand = "0.8.5"
reqwest = { version = "0.13.3", default-features = false, features = ["json", "rustls"] }
hmac = "0.12"
sha2 = "0.10"