Files
hospital-server/Cargo.toml

20 lines
478 B
TOML
Raw Permalink Normal View History

2025-11-06 18:32:56 +03:00
[package]
2025-11-18 18:26:20 +03:00
name = "hospital_server"
2025-11-06 18:32:56 +03:00
version = "0.1.0"
edition = "2024"
2025-11-06 18:53:37 +03:00
2025-11-06 18:32:56 +03:00
[dependencies]
2025-11-06 18:53:37 +03:00
axum = {version = "0.8.4", features = ["macros"]}
tokio = {version = "1.47.1", features = ["full"]}
utoipa = "5.4.0"
2025-11-18 18:26:20 +03:00
sqlx = {version = "0.6.0", features = ["runtime-tokio-native-tls","sqlite"]}
2025-11-06 18:53:37 +03:00
config = "0.15.6"
utoipa-axum = {version = "0.2.0" }
utoipa-scalar = { version = "0.3", features = ["axum"] }
tracing = "0.1.41"
serde = "1.0.228"
tracing-subscriber = "0.3.20"
2025-11-18 18:26:20 +03:00
dotenvy = "0.15.7"