mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
a2eceec33b
* chore: replace `dotenv` with `dotenvy` The former appears to be unmaintained and the latter is a drop-in replacement. * chore: fix all warnings
13 lines
319 B
TOML
13 lines
319 B
TOML
[package]
|
|
name = "sqlx-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
sqlx = { default-features = false, path = ".." }
|
|
env_logger = "0.9.0"
|
|
dotenvy = "0.15.0"
|
|
anyhow = "1.0.26"
|
|
async-std = { version = "1.8.0", features = [ "attributes" ] }
|
|
tokio = { version = "1.0.1", features = [ "full" ] }
|