forked from w3f/polkadot-registrar-challenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (51 loc) · 1.21 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
[package]
name = "registrar"
version = "0.3.4"
authors = ["lamafab <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "system"
path = "src/lib.rs"
[[bin]]
name = "registrar"
path = "src/bin/main.rs"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tokio = { version = "1.26.0", features = ["macros", "time", "process", "rt-multi-thread" ] }
futures = "0.3.27"
mongodb = "2.4.0"
bson = "2.6.1"
reqwest = "0.11.15"
urlencoding = "2.1.2"
async-trait = "0.1.67"
actix = { version = "0.13.0", features = ["macros"]}
actix-web = "4.3.1"
actix-broker = "0.4.3"
actix-codec = "0.5.0"
actix-web-actors = "4.2.0"
actix-cors = "0.6.4"
actix-test = "0.1.1"
awc = "3.0.0-beta.7"
thiserror = "1.0.40"
anyhow = "1.0.70"
serde = "1.0.158"
serde_json = "1.0.94"
serde_yaml = "0.9.19"
matrix-sdk = "0.3.0"
ruma = "0.2.0"
lettre = "0.10.3"
imap = "2.4.1"
mailparse = "0.14.0"
native-tls = "0.2.4"
hmac = "0.12.0"
sha-1 = "0.10.1"
sha2 = "0.10.6"
base64 = "0.21.0"
url = "2.3.1"
rand = "0.8.5"
hex = "0.4.3"
strsim = "0.10.0"
[dev-dependencies]
actix-http = "3.0.0-beta.6"