thesis/project/backend/Cargo.toml

25 lines
658 B
TOML
Raw Normal View History

[package]
2020-04-13 17:48:42 +03:00
name = "thesis-backend"
version = "0.1.0"
authors = ["Marko Korhonen <marko.korhonen@reekynet.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-24 14:24:20 +02:00
actix-web = "2.0.0"
actix-rt = "1.0.0"
serde = { version = "1.0.104", features = ["derive"] }
diesel = { version = "1.4.3", features = ["mysql", "r2d2", "chrono"] }
2020-03-30 14:41:46 +03:00
dotenv = "0.15.0"
bcrypt = "0.6.2"
env_logger = "0.7.1"
r2d2 = "0.8.8"
2020-04-02 20:07:03 +03:00
crypto = "0.0.2"
jsonwebtoken = "7.1.0"
chrono = { version = "0.4.11", features = ["serde"] }
actix-cors = "0.2.0"
actix-identity = "0.2.1"
2020-04-10 12:46:39 +03:00
futures = "0.3.4"
2020-04-13 17:48:42 +03:00
actix-files = "0.2.1"