generated from alecodes/base-template
feat: add sqlx setup
This commit is contained in:
parent
57074a89ff
commit
07861bcca9
8 changed files with 2158 additions and 15 deletions
10
Cargo.toml
10
Cargo.toml
|
|
@ -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"]}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue