aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 9b59ed097d29bd462c8151017195c238ad2a1cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "itmo_queue_server"
version = "0.1.0"
edition = "2024"
publish = false

[workspace]
members = [".", "entity", "migration"]

[dependencies]
axum = "0.8.4"
entity = { version = "0.1.0", path = "entity" }
migration = { version = "0.1.0", path = "migration" }
sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"