imgboard/Cargo.toml

25 lines
913 B
TOML
Raw Normal View History

2023-10-18 17:17:53 +02:00
[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]
2023-10-22 17:14:53 +02:00
axum = { version = "0.6.20", features = ["tracing", "macros", "headers", "form"] }
bcrypt = "0.15.0"
2023-10-18 22:32:37 +02:00
chrono = { version = "0.4.31", features = ["serde"] }
2023-10-18 17:17:53 +02:00
clap = { version = "4.4.6", features = ["derive", "env"] }
dotenvy = "0.15.7"
2023-10-18 22:32:37 +02:00
eyre = "0.6.8"
handlebars = { version = "4.4.0", features = ["rust-embed", "dir_source"] }
2023-10-19 17:24:08 +02:00
headers = "0.3.9"
2023-10-22 23:05:09 +02:00
jsonwebtoken = "9.1.0"
2023-10-18 22:32:37 +02:00
rust-embed = "8.0.0"
2023-10-18 17:17:53 +02:00
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"