mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-01-20 07:36:34 +00:00
16 lines
411 B
TOML
16 lines
411 B
TOML
[package]
|
|
name = "sqlx-example-postgres-mockable-todos"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"
|
|
async-trait = "0.1.41"
|
|
mockall = "0.11"
|