mirror of
https://github.com/tokio-rs/axum.git
synced 2025-09-28 05:20:46 +00:00

* sort dependencies * check sorted deps on CI * this should fail * does caching matter? * fix sorting
14 lines
359 B
TOML
14 lines
359 B
TOML
[package]
|
|
name = "example-sqlx-postgres"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
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.5.10", features = ["runtime-tokio-rustls", "any", "postgres"] }
|