forked from canduma/canduma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (34 loc) · 775 Bytes
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "rust-actix-graphql"
version = "0.2.0"
authors = [
"Julien Lenne <[email protected]>",
"Sylvain Tedoldi <[email protected]>",
]
edition = "2018"
[dependencies]
dotenv = "0.15"
actix-web = "3"
actix-identity = "0.3"
futures = "0.3.5"
diesel = { version = "1.4.7", features = ["postgres", "uuidv07", "chrono", "r2d2"] }
r2d2 = "0.8"
juniper = "0.14"
uuid = { version = "=0.7", features = ["serde", "v4"] }
time = "0.2"
chrono = { version = "0.4", features = ["serde"] }
lazy_static = "1"
log = "0.4.8"
env_logger ="0.7.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
rand = "0.7"
argon2rs = "0.2"
jsonwebtoken = "7"
anyhow = "1.0"
thiserror = "1.0"
num = "0.2"
shrinkwraprs = "0.2"
structopt = "0.3"
regex = "1"