feat: add sqlx setup

This commit is contained in:
Alexander Navarro 2025-01-14 20:24:25 -03:00
parent 57074a89ff
commit 07861bcca9
8 changed files with 2158 additions and 15 deletions

View file

@ -4,4 +4,14 @@ version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive", "env"] }
futures = "0.3.31"
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"sqlite",
"chrono",
] }
tokio = {version = "1.43.0", features = ["full"]}