24 lines
575 B
TOML
24 lines
575 B
TOML
|
[package]
|
||
|
name = "axum-test"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
axum = "0.7.5"
|
||
|
derive_more = "0.99.17"
|
||
|
serde = { version = "1.0.197", features = ["derive"] }
|
||
|
serde_json = "1.0.115"
|
||
|
tokio = { version = "1.37.0", features = ["full"] }
|
||
|
tracing = "0.1.40"
|
||
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||
|
sqlx = { version = "0.7.4", features = [
|
||
|
# "runtime-tokio-rustls",
|
||
|
"runtime-tokio",
|
||
|
"postgres",
|
||
|
"uuid",
|
||
|
"chrono",
|
||
|
"json",
|
||
|
] }
|