mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
* chore: replace `dotenv` with `dotenvy` The former appears to be unmaintained and the latter is a drop-in replacement. * chore: fix all warnings
14 lines
337 B
TOML
14 lines
337 B
TOML
[package]
|
|
name = "sqlx-example-postgres-todos"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
sqlx = { path = "../../../", features = ["postgres", "offline", "runtime-tokio-native-tls"] }
|
|
structopt = "0.3"
|
|
tokio = { version = "1.20.0", features = ["macros"]}
|
|
dotenvy = "0.15.0"
|