-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 957 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]
resolver = "2"
members = [
"mora-core",
"mora-queue",
"mora-api",
"mora-server",
"mora-client",
"mora-cli",
]
[workspace.dependencies]
mora-core = { path = "./mora-core" }
mora-channel = { path = "./mora-channel" }
mora-queue = { path = "./mora-queue" }
mora-api = { path = "./mora-api" }
mora-server = { path = "./mora-server" }
mora-client = { path = "./mora-client" }
mora-cli = { path = "./mora-cli" }
axum = { version = "0.6.18" }
axum-macros = { version = "0.3.8" }
config = { version = "0.13.1" }
log = "0.4.17"
serde = { version = "1.0.163", features = ["derive"] }
simple_logger = "4.1.0"
regex = { version = "1.8.1" }
tokio = { version = "1.28.1", features = ["full"] }
thiserror = { version = "1.0.48" }
utoipa = { version = "3.5.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "3.1.5", features = ["axum"] }
uuid = { version = "1.3.3", features = ["v4", "fast-rng", "macro-diagnostics"] }