-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·38 lines (34 loc) · 1.09 KB
/
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
[package]
name = "enrolement"
version = "0.1.0"
authors = ["flo"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "3.3.3"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = "1.0.130"
json ="0.12.4"
serde_json = "1.0"
diesel = { version = "1.0.0", features = ["postgres"] }
actix-cors = "0.5.4"
headers ="0.3.5"
actix-rt = "1.0"
config = "0.11.0"
dotenv = "0.15"
eyre = "0.6.5"
color-eyre = "0.5.11"
tracing = "0.1"
tracing-futures = "0.2"
tracing-log = {version = "0.1", features = ["env_logger"] }
tracing-subscriber = "0.2.0"
tokio ={version = "1", features = ["full"]}
sqlx = {version= "0.3.0", default-features = false, features = ["runtime-tokio", "macros","postgres","uuid" ,"chrono"]}
uuid ={version = "0.8", features = ["serde","v4"]}
chrono = {version = "0.4.19", features = ["serde"]}
validator = "0.14.0"
validator_derive ="0.14.0"
jsonwebtoken = "7.1"
argonautica = {version = "0.2", features = ["simd"]}
futures = {version = "0.3", features = ["compat"]}
actix-web-httpauth = "0.5.1"