-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
102 lines (90 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "keyserver"
version = "1.14.6"
edition = "2021"
authors = [
"Derek Rein <[email protected]>",
"Szymon Rząd <[email protected]>",
"Xavier Basty-Kjellberg <[email protected]>",
"Maciej Rak <[email protected]>",
]
build = "build.rs"
[dependencies]
wc = { git = "https://github.com/WalletConnect/utils-rs.git", tag = "v0.11.1", features = [
"geoip",
"geoblock",
] }
relay_rpc = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.30.0", features = [
"cacao",
] }
blockchain_api = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.30.0" }
aws-config = "1.1.9"
aws-sdk-s3 = "1.21.0"
axum = "0.7.5"
axum-macros = "0.3.0"
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4.13", features = [
"util",
"timeout",
"load-shed",
"limit",
] }
tower-http = { version = "0.5.2", features = [
"add-extension",
"auth",
"compression-full",
"trace",
"cors",
"request-id",
"util",
] }
hyper = "1.2.0"
http = "1.0.0"
# Database
wither = { git = "https://github.com/WalletConnect/wither.git", rev = "6a70e74", features = [
"bson-chrono-0_4",
] }
wither_derive = { git = "https://github.com/WalletConnect/wither.git", rev = "6a70e74" }
# Seralisation
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# JWT
jsonwebtoken = "8"
# Env Vars
dotenv = "0.15"
envy = "0.4"
# Metrics & Traces
prometheus-core = { package = "prometheus", version = "0.13" }
opentelemetry = { version = "0.18", features = ["metrics", "rt-tokio"] }
opentelemetry-prometheus = "0.11"
opentelemetry-otlp = "0.11"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"parking_lot",
] }
tracing-appender = "0.2"
tracing-opentelemetry = "0.18"
atty = "0.2"
# Misc
build-info = "0.0.29"
derive_more = "0.99"
bs58 = "0.4"
log = "0.4"
thiserror = "1.0"
async-trait = "0.1"
anyhow = "1"
validator = { version = "0.16", features = ["derive"] }
data-encoding = "2.3"
iri-string = "0.7.0"
time = "0.3.17"
k256 = "0.12.0"
sha3 = "0.10.6"
hex = "0.4.3"
[build-dependencies]
build-info-build = "0.0.29"
# [patch.'https://github.com/WalletConnect/WalletConnectRust.git']
# relay_rpc = { path = "../WalletConnectRust/relay_rpc" }
# relay_client = { path = "../WalletConnectRust/relay_client" }
# blockchain_api = { path = "../WalletConnectRust/blockchain_api" }