imgboard/Cargo.toml
2023-10-19 17:24:08 +02:00

22 lines
864 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", "macros", "headers"] }
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.6", features = ["derive", "env"] }
dotenvy = "0.15.7"
eyre = "0.6.8"
handlebars = { version = "4.4.0", features = ["rust-embed", "dir_source"] }
headers = "0.3.9"
rust-embed = "8.0.0"
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"