image-gallery/Cargo.toml
Klemens Schölhorn 8f004e5e65 Add support for config file in image directory
This config file will be loaded together with the images and defines the
passwords for login and some other parameters.
2023-04-07 00:37:54 +02:00

24 lines
842 B
TOML

[package]
name = "image-gallery"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.69"
axum = { version = "0.6.7", features = ["form", "macros"] }
axum-sessions = "0.4.1"
axum-template = { version = "0.14.0", features = ["minijinja"] }
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
chrono = "0.4.24"
hex = { version = "0.4.3", features = ["serde"] }
image = { version = "0.24.5", default-features = false, features = ["jpeg", "webp-encoder"] }
jemallocator = "0.5.0"
kamadak-exif = "0.5.5"
minijinja = "0.30.4"
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.21"
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"] }