-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
38 lines (37 loc) · 1004 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
34
35
36
37
38
[workspace]
members = ["chat_server", "chat_core", "notify_server", "chat_test"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.82"
axum = { version = "0.7.5", features = [
"http2",
"query",
"tracing",
"multipart",
# "macros",
] }
axum-extra = { version = "0.9.3", features = ["typed-header"] }
chrono = { version = "0.4.38", features = ["serde"] }
chat-core = { path = "./chat_core" }
chat-server = { path = "./chat_server" }
jwt-simple = "0.12.9"
notify-server = { path = "./notify_server" }
serde = { version = "1.0.198", features = ["derive"] }
serde_yaml = "0.9.34"
sqlx = { version = "0.7.4", features = [
"chrono",
"postgres",
"runtime-tokio",
"tls-rustls",
] }
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = [
"compression-full",
"cors",
"fs",
"trace",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }