Add basic SQLx

This commit is contained in:
traxys 2023-08-14 18:26:38 +02:00
parent 886df477a8
commit c7e3468acc
6 changed files with 1036 additions and 11 deletions

View file

@ -9,6 +9,10 @@ axum = "0.6.20"
color-eyre = "0.6.2"
envious = "0.2.2"
serde = { version = "1.0.183", features = ["derive"] }
sqlx = { version = "0.7.1", features = ["runtime-tokio", "postgres", "uuid", "migrate"] }
tokio = { version = "1.31.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
[profile.dev.package.sqlx-macros]
opt-level = 3