axum/examples/sqlx-postgres/Cargo.toml
2024-09-27 18:50:52 +02:00

13 lines
356 B
TOML

[package]
name = "example-sqlx-postgres"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum" }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "any", "postgres"] }