image-gallery/Cargo.toml

24 lines
842 B
TOML
Raw Normal View History

2023-03-10 19:00:12 +01:00
[package]
name = "image-gallery"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.69"
2023-03-10 19:00:12 +01:00
axum = { version = "0.6.7", features = ["form", "macros"] }
axum-sessions = "0.4.1"
axum-template = { version = "0.14.0", features = ["minijinja"] }
2023-03-13 21:33:29 +01:00
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
chrono = "0.4.24"
2023-03-13 21:33:29 +01:00
hex = { version = "0.4.3", features = ["serde"] }
2023-03-10 19:00:12 +01:00
image = { version = "0.24.5", default-features = false, features = ["jpeg", "webp-encoder"] }
jemallocator = "0.5.0"
2023-03-10 19:00:12 +01:00
kamadak-exif = "0.5.5"
minijinja = "0.30.4"
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.21"
2023-03-10 19:00:12 +01:00
tokio = { version = "1.25.0", features = ["full"] }
tower-http = { version = "0.3.5", features = ["fs", "trace", "compression-br"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }