add few dbs

This commit is contained in:
2021-08-18 03:56:12 -05:00
parent 1d808a59b2
commit 141bd42fb4
4 changed files with 163 additions and 12 deletions

View File

@@ -2,7 +2,49 @@
name = "test-sqlx"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
authors = ["Bassem Girgis <brgirgis@gmail.com>"]
[dependencies]
# logging
log = { version = "^0.4", features = [
"max_level_debug",
"release_max_level_warn",
] }
fern = "^0.5"
# sqlx
sqlx = { version = "0.5.6", features = [
# tokio + rustls
"runtime-tokio-rustls",
# PostgresSQL
"postgres",
"uuid",
"json",
# MySQL and MariaDB
"mysql",
# MS SQL
"mssql",
# SQLite
"sqlite",
# misc
"macros",
"chrono",
"tls",
] }
tokio = { version = "1", features = [
"rt-multi-thread",
"time",
"fs",
"macros",
"net",
] }
# sqlx = { version = "0.5.6", features = [
# "postgres",
# "runtime-async-std-rustls",
# ] }
# async-std = { version = "1.6", features = ["attributes"] }
# other
chrono = "^0.4"