-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 710 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 710 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
31
32
33
34
35
36
37
[package]
name = "todo-points-backend"
version = "0.1.0"
authors = ["gmackie <graham.mackie@gmail.com>"]
edition = "2018"
[dependencies]
actix-web = "2.0.0"
actix-identity = "0.2.1"
actix-rt = "1.1.1"
actix-service = "1.0.5"
actix-cors = "0.2.0"
log = "0.4.8"
env_logger = "0.7.1"
diesel_migrations = "1.4.0"
serde = "1.0.110"
serde_derive = "1.0.110"
serde_json = "1.0.53"
dotenv = "0.15.0"
futures = "0.3.5"
failure = "0.1.8"
r2d2 = "0.8.8"
derive_more = "0.99.7"
jsonwebtoken = "7.1.0"
bcrypt = "0.8.0"
[dependencies.diesel]
version = "1.4.4"
features = ["postgres", "r2d2", "chrono"]
[dependencies.chrono]
version = "0.4.11"
features = ["serde"]
[dependencies.uuid]
version = "0.8.1"
features = ["v4"]