add few dbs
This commit is contained in:
46
Cargo.toml
46
Cargo.toml
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user