mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 13:20:59 +00:00
14 lines
362 B
TOML
14 lines
362 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", "runtime-tokio-native-tls"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
tokio = { version = "1.20.0", features = ["rt", "macros"]}
|
|
dotenvy = "0.15.0"
|