-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (58 loc) · 1.41 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
[workspace]
members = [
"user-verifier",
"gov-portal-mocker",
"gov-portal-db",
"shared",
"mailer",
"profiles-fetcher",
]
resolver = "2"
[workspace.dependencies]
# Async
tokio = { version = "1", features = ["rt-multi-thread", "time", "macros"] }
futures-util = "0"
# Ethereum
ethers = { version = "2" }
ethabi = "18.0.0"
ethereum-types = "0.14.1"
jsonrpc-core = "18.0.0"
web3 = { version = "0.19" }
# Crypto
k256 = { version = "0.13" }
ecdsa = { version = "0.16" }
sha3 = "0"
# Web
axum = "0"
tower-http = { version = "0", features = ["cors"] }
reqwest = { version = "0", features = ["rustls-tls", "json", "deflate"] }
jsonwebtoken = "9"
url = { version = "2", features = ["serde"] }
cid = "0"
# SerDe
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde-email = "3"
bson = { version = "2", features = ["chrono-0_4"] }
serde-enum-str = "0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0", features = [ "env-filter", "registry" ] }
log = "0"
# Persistence
mongodb = "3"
redis = "0"
# Misc
backtrace = "0"
uuid = { version = "1", features = ["v4", "serde"] }
config = { version = "0.13", default-features = false, features = ["json"] }
chrono = { version = "0", default-features = false, features = ["clock", "serde"] }
assert_matches = "1"
thiserror = "1"
hex = "0"
base64 = "0"
rand = "0"
anyhow = "1"
dotenv = "0"
sendgrid = "0"
clap = { version = "4", features = ["derive"] }