implement basic patients routes

This commit is contained in:
Akhmedov Khadgimurad
2025-11-18 18:26:20 +03:00
parent 8e81b99f63
commit e7f20a4d82
15 changed files with 218 additions and 295 deletions

View File

@ -1,5 +1,5 @@
[package]
name = "test_exercise"
name = "hospital_server"
version = "0.1.0"
edition = "2024"
@ -9,10 +9,11 @@ edition = "2024"
axum = {version = "0.8.4", features = ["macros"]}
tokio = {version = "1.47.1", features = ["full"]}
utoipa = "5.4.0"
sqlx = {version = "0.6.0", features = ["runtime-tokio-native-tls","postgres"]}
sqlx = {version = "0.6.0", features = ["runtime-tokio-native-tls","sqlite"]}
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"
dotenvy = "0.15.7"