my-website-v2/backend/public/Cargo.toml

23 lines
550 B
TOML
Raw Normal View History

2024-09-03 00:17:19 -05:00
[package]
name = "public"
version = "0.1.0"
edition = "2021"
authors = ["Wyatt J. Miller <wyatt@wyattjmiller.com"]
2024-09-03 00:17:19 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.6"
tokio = { version = "1.40.0", features = ["full"] }
sqlx = { version = "0.8.2", features = [
"runtime-tokio-rustls",
"postgres",
"chrono",
"json",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
dotenvy = "0.15.7"
serde = "1.0.210"
serde_json = "1.0.128"