move to postgres; implement marking caught fish

This commit is contained in:
insects 2025-02-06 14:25:51 +01:00
parent 3e249e0a0d
commit e564e87c94
7 changed files with 110 additions and 34 deletions

View file

@ -8,6 +8,7 @@ anyhow = "1.0.95"
axum = { version = "0.8.1", features = ["macros"] }
chrono = "0.4.39"
chrono-humanize = "0.2.3"
dotenvy = "0.15.7"
maud = { version = "0.27.0", features = ["axum"] }
nanoid = "0.4.0"
serde = { version = "1.0.217", features = ["derive"] }
@ -16,7 +17,7 @@ serde_path_to_error = "0.1.16"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-rustls-ring-webpki",
"sqlite",
"postgres",
"migrate",
] }
tokio = { version = "1.43.0", features = ["full"] }