imgboard/Cargo.toml
2023-10-18 17:17:53 +02:00

18 lines
677 B
TOML

[package]
name = "imgboard"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.20", features = ["tracing"] }
chrono = "0.4.31"
clap = { version = "4.4.6", features = ["derive", "env"] }
dotenvy = "0.15.7"
serde = { version = "1.0.189", features = ["derive"] }
sqlx = { version = "0.7.2", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "migrate", "chrono"] }
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.4.4", features = ["trace"] }
tracing = "0.1.39"
tracing-subscriber = "0.3.17"