-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
78 lines (55 loc) · 1.3 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "identity"
version = "0.1.0"
authors = ["realaravinth <realaravinth@batsense.net>"]
edition = "2018"
default-run = "identity"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [ ".", "pow" ]
[[bin]]
name = "identity"
path = "./src/main.rs"
[[bin]]
name = "identity-cli"
path = "./src/cli.rs"
[dependencies]
actix = "0.10"
actix-web = "3"
actix-rt = "1"
actix-files = "0.4"
actix-http = "2"
actix-identity = "0.3"
actix-session = "0.4"
actix-service = "1.0.6"
oxide-auth = "0.5.0"
oxide-auth-actix = "0.1.0"
pretty_env_logger = "0.4.0"
log = "0.4.11"
rand = "0.7.3"
rust-argon2 = "0.8.2"
serde = "1.0.114"
serde_derive = "1.0.114"
serde_json = "1"
thiserror = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
config = "0.10"
lazy_static = "1.4.0"
num_cpus = "1.13.0"
unicode-normalization = "0.1.13"
regex = { version = "1.3.9", features = [ "perf-inline", "perf-dfa", "perf-literal", "perf-cache", "perf"]}
pow_sha256 = "0.2.1"
futures = "0.3"
validator = "0.12"
validator_derive = "0.12"
ammonia="3"
url = "2"
derive_more = "0.99"
tokio-pg-mapper = "0.1.8"
tokio-pg-mapper-derive = "0.1.5"
tokio-postgres = "0.5"
deadpool-postgres = "0.5"
deadpool = "0.5"
actix-redis = "0.9"
redis-async = "0.6"
clap = "2.33"