2023-03-28 15:32:00 +00:00
|
|
|
[package]
|
|
|
|
|
name = "example-diesel-async-postgres"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-26 20:21:39 +02:00
|
|
|
axum = { path = "../../axum", features = ["macros"] }
|
2025-10-06 23:58:01 +09:00
|
|
|
diesel = "~2.3"
|
|
|
|
|
diesel-async = { version = "0.7", features = ["postgres", "bb8", "migrations"] }
|
|
|
|
|
diesel_migrations = "~2.3"
|
2023-03-28 15:32:00 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|