-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 863 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
[package]
name = "ages_api"
version = "0.1.0"
authors = ["Emmanuel Bosquet <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.51"
actix-cors = "0.2.0"
actix-files = "0.2.1"
actix-rt = "1.1.1" # for the #[actix_rt::main] macro
actix-service = "1.0.5"
actix-web = "2.0.0"
bcrypt = "0.8.0"
chrono = { version = "0.4.11", features = ["serde"] }
derive_more = "0.99.7"
diesel = { version = "1.4.4", features = ["postgres", "r2d2", "chrono"] }
diesel_migrations = "1.4"
dotenv = "0.15.0"
env_logger = "0.7.1"
failure = "0.1.8"
futures = "0.3.5"
jsonwebtoken = "7.1.0"
lazy_static = "1.4"
listenfd = "0.3"
log = "0.4.8"
r2d2 = "0.8"
serde = "1.0.111"
serde_json = "1.0.53"
serde_derive = "1.0.111"
uuid = { version = "0.8.1", features = ["serde", "v4"] }