mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-02 07:21:08 +00:00
15 lines
396 B
TOML
15 lines
396 B
TOML
[package]
|
|
name = "sqlx-example-postgres-todos"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
workspace = "../../../"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-std = { version = "1.4.0", features = [ "attributes" ] }
|
|
futures = "0.3"
|
|
paw = "1.0"
|
|
sqlx = { path = "../../../", features = ["postgres", "offline", "runtime-async-std-native-tls"] }
|
|
structopt = { version = "0.3", features = ["paw"] }
|
|
dotenv = "0.15.0"
|