mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 15:17:18 +01:00
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.3", 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"] }
|