Files
ImageApi/Cargo.toml
Cameron Cordes 536300e0a1 Serving files is working
Right now we're not doing any streaming and this isn't ideal. I'll need
to figure it out at some point.
2020-07-08 21:38:21 -04:00

23 lines
498 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
[dependencies]
actix-web = "2.0"
actix-rt = "1.0"
actix-files = "0.2.2"
futures = "0.3.5"
jsonwebtoken = "7.2.0"
serde = "1.0"
serde_json = "1.0"
diesel = { version = "1.4.4", features = ["sqlite"] }
hmac = "0.7.1"
sha2 = "0.8.2"
chrono = "0.4.11"
dotenv = "0.15"
bcrypt = "0.8.1"