sqlx/examples/postgres/json/Cargo.toml
Austin Bonander a2eceec33b
chore: replace dotenv with dotenvy (#2003)
* chore: replace `dotenv` with `dotenvy`

The former appears to be unmaintained and the latter is a drop-in replacement.

* chore: fix all warnings
2022-07-28 14:33:44 -07:00

16 lines
349 B
TOML

[package]
name = "json"
version = "0.1.0"
edition = "2021"
workspace = "../../../"
[dependencies]
anyhow = "1.0"
dotenvy = "0.15.0"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { path = "../../../", features = ["postgres", "json"] }
structopt = "0.3"
tokio = { version = "1.20.0", features = ["macros"]}