forked from SakaDream/actix-web-rest-api-with-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 762 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
[package]
name = "actix-web-rest-api-with-jwt"
version = "0.1.0"
authors = ["Hai Phan <bahaimt@gmail.com>"]
edition = "2018"
[dependencies]
actix-web = "3.3.2"
actix-rt = "1.1.1"
actix-service = "1.0.6"
actix-cors = "0.5.4"
log = "0.4.14"
env_logger = "0.9.0"
diesel_migrations = "1.4.0"
serde = "1.0.123"
serde_derive = "1.0.123"
serde_json = "1.0.62"
dotenv = "0.15.0"
futures = "0.3.12"
failure = "0.1.8"
derive_more = "0.99.11"
jsonwebtoken = "7.2.0"
bcrypt = "0.10.1"
[dependencies.diesel]
version = "1.4.5"
features = ["postgres", "r2d2", "chrono"]
[dependencies.chrono]
version = "0.4.19"
features = ["serde"]
[dependencies.uuid]
version = "0.8.2"
features = ["v4"]
[dev-dependencies.diesel]
version = "1.4.5"
features = ["sqlite", "r2d2", "chrono"]