-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (29 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
30 lines (29 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "upowdb-backend"
version = "0.2.0"
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>", "David Lamm <david-lamm@web.de>"]
edition = "2018"
[dependencies]
actix-web = "1.0.5"
actix-cors = "0.1.0"
serde = { version = "1.0.98", features = ["derive"] }
clap = "2.33.0"
fern = "0.5.8"
log = "0.4.8"
actix-web-prom = "0.1.2"
config = "0.9.3"
chrono = "0.4.7"
actix = "0.8.3"
diesel = { version = "1.4.2", features = ["sqlite", "r2d2"] }
futures = "0.1.28"
serde_json = "1.0.40"
uuid = { version = "0.7.4", features = ["serde", "v4"] }
actix-web-jwt-middleware = { path = "actix-web-jwt-middleware" }
rand = "0.7.0"
regex = "1.2.1"
lazy_static = "1.3.0"
argon2rs = "0.2.5"
frank_jwt = "3.1.1"
base64 = "0.10.1"
actix-web-httpauth = "0.3.2"
upowdb-models = { path = "upowdb-models" }