-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
40 lines (38 loc) · 904 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
[package]
name = "nq-api"
version = "0.2.0"
edition = "2021"
[workspace]
members = [".", "authN", "authZ"]
[dependencies]
log4rs = "1.3.0"
log = "0.4.21"
env_logger = "0.10.0"
auth_n = { path = "authN" }
auth_z = { path = "authZ" }
actix-web = "4.8.0"
actix-cors = "0.6.4"
diesel = { version = "2.2.2", features = [
"postgres",
"r2d2",
"chrono",
"uuid",
"network-address",
] }
ipnetwork = "0.20.0"
uuid = { version = "1.3.3", features = ["serde"] }
dotenvy = "0.15"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1"
rand = "0.8.5"
chrono = { version = "0.4", features = ["serde"] }
lettre = { version = "0.10.1", default-features = false, features = [
"smtp-transport",
"tokio1-rustls-tls",
"hostname",
"builder",
] }
validator = { version = "0.16.0", features = ["derive"] }
diesel_migrations = "2.0.0"
async-trait = "0.1.68"
regex = "1.10.6"