mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-29 11:42:47 +01:00
9da1897688
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
17 lines
485 B
TOML
17 lines
485 B
TOML
[package]
|
|
name = "example-diesel-async-postgres"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum" }
|
|
axum-macros = { path = "../../axum-macros" }
|
|
bb8 = "0.8"
|
|
diesel = "2"
|
|
diesel-async = { version = "0.2", features = ["postgres", "bb8"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|