Files
ImageApi/Cargo.toml
Cameron Cordes 68bfcbf85f Update and Migrate Diesel to 2.0
Almost have tag support working, still figuring out how to get photo
tags.
2023-03-18 14:43:41 -04:00

40 lines
850 B
TOML

[package]
name = "image-api"
version = "0.1.0"
authors = ["Cameron Cordes <cameronc.dev@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
[dependencies]
actix = "0.12"
actix-web = "4"
actix-rt = "2.6"
actix-files = "0.6"
actix-multipart = "0.4.0"
futures = "0.3.5"
jsonwebtoken = "7.2.0"
serde = "1"
serde_json = "1"
diesel = { version = "2.0.2", features = ["sqlite"] }
diesel_migrations = "2.0.0"
hmac = "0.11"
sha2 = "0.9"
chrono = "0.4"
dotenv = "0.15"
bcrypt = "0.9"
image = { version = "0.23", default-features = false, features = ["jpeg", "png", "jpeg_rayon"] }
walkdir = "2"
rayon = "1.5"
notify = "4.0"
path-absolutize = "3.0"
log="0.4"
env_logger="0.8"
actix-web-prom = "0.6"
prometheus = "0.13"
lazy_static = "1.1"
anyhow = "1.0"