2020-06-17 11:08:44 +02:00
|
|
|
[package]
|
2020-06-28 16:31:56 +02:00
|
|
|
authors = ["Micha Glave <coding@migmedia.de>"]
|
|
|
|
description = "An image gallery, defined by plain files."
|
2020-06-17 11:08:44 +02:00
|
|
|
edition = "2018"
|
|
|
|
exclude = [".travis.yml", ".gitignore", "test-data/**"]
|
2020-06-28 16:31:56 +02:00
|
|
|
name = "curators"
|
|
|
|
readme = "README.md"
|
|
|
|
version = "0.1.0"
|
2020-06-17 11:08:44 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-28 16:31:56 +02:00
|
|
|
actix-rt = "1.0"
|
|
|
|
actix-web = "2.0"
|
|
|
|
diesel = { version ="1.4", features = ["sqlite", "r2d2", "uuid", "chrono"] }
|
|
|
|
uuid = { version="0.7", features = ["v5"] }
|
|
|
|
dotenv = "0.15"
|
|
|
|
env_logger = "0.7"
|
|
|
|
futures = "0.3"
|
|
|
|
kamadak-exif = "0.5"
|
|
|
|
listenfd = "0.3"
|
2020-06-17 11:08:44 +02:00
|
|
|
structopt = "0.3"
|
|
|
|
strum = "0.18.0"
|
|
|
|
strum_macros = "0.18.0"
|
2020-06-28 16:31:56 +02:00
|
|
|
toml = "0.5"
|
|
|
|
chrono = "0.4"
|
|
|
|
anyhow = "1"
|