1
0
mirror of https://github.com/actix/examples synced 2024-11-28 00:12:57 +01:00
examples/database_interactions/pg/Cargo.toml

16 lines
317 B
TOML
Raw Normal View History

2020-01-16 01:19:15 +01:00
[package]
name = "async_pg"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2020-01-16 01:19:15 +01:00
[dependencies]
2020-09-12 17:49:45 +02:00
actix-web = "3"
config = "0.10.1"
deadpool-postgres = "0.5.0"
2020-01-16 01:19:15 +01:00
derive_more = "0.99.2"
dotenv = "0.15.0"
serde = { version = "1.0.104", features = ["derive"] }
tokio-pg-mapper = "0.1"
tokio-pg-mapper-derive = "0.1"
2020-01-16 01:19:15 +01:00
tokio-postgres = "0.5.1"