-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
105 lines (89 loc) · 3.05 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
103
104
105
[package]
name = "notify-server"
version = "0.29.42"
publish = false
edition = "2021"
authors = ["Chris Smith <chris@walletconnect.com>"]
build = "build.rs"
[dependencies]
wc = { git = "https://github.com/WalletConnect/utils-rs.git", tag = "v0.11.1", features = ["full"] }
#cerberus = { git = "https://github.com/WalletConnect/cerberus.git", tag = "v0.9.1" }
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7.5", features = ["json"] }
axum-core = "0.4.3"
axum-extra = { version = "0.9.3", features = ["typed-header"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["trace", "cors", "request-id", "util"] }
hyper = "1.3.1"
# Seralisation
serde_json = "1.0.116"
serde = { version = "1.0", features = ["derive"] }
#serde_bson = "0.0.1"
# Env Vars
dotenvy = "0.15"
envy = "0.4.2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"parking_lot",
] }
#tracing-appender = "0.2"
#tracing-opentelemetry = "0.19"
# Analytics
parquet = { git = "https://github.com/WalletConnect/arrow-rs.git", rev = "99a1cc3", default-features = false, features = [
"flate2",
] }
parquet_derive = { git = "https://github.com/WalletConnect/arrow-rs.git", rev = "99a1cc3" }
aws-config = "1.2.1"
aws-sdk-s3 = "1.24.0"
# Encoding
base64 = "0.22.0"
hex = "0.4.3"
# Misc
build-info = "0.0"
thiserror = "1.0"
async-trait = "0.1"
tokio-stream = "0.1.15"
regex = "1.10.4"
url = { version = "2.5.0", features = ["serde"] }
sha256 = "1.5.0"
chacha20poly1305 = "0.10.1"
rand = "0.8.5"
jsonwebtoken = "9.3.0"
data-encoding = "2.5.0"
chrono = { version = "0.4.38", features = ["serde"] }
derive_more = "0.99.17"
futures = "0.3.30"
futures-util = "0.3.30"
relay_rpc = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.29.3", features = ["cacao"] }
relay_client = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.29.3" }
blockchain_api = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.29.3" }
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
hkdf = "0.12.4"
sha2 = "0.10.8"
uuid = { version = "1.8.0", features = ["serde", "v4"] }
reqwest = { version = "0.12.4", features = ["json"] }
pnet_datalink = "0.34.0"
ipnet = "2.9.0"
once_cell = "1.19.0"
rmp-serde = "1.2.0"
deadpool-redis = "0.15.0"
redis = { version = "0.25.3", default-features = false, features = ["script"] }
rand_chacha = "0.3.1"
sqlx = { version = "0.7.4", features = ["runtime-tokio-native-tls", "postgres", "chrono", "uuid"] }
wiremock = "0.6.0"
itertools = "0.12.1"
sha3 = "0.10.8"
validator = { version = "0.17.0", features = ["derive"] }
k256 = "0.13.3"
[dev-dependencies]
test-context = "0.3"
[build-dependencies]
build-info-build = "0.0"
# [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" }
# [patch.'https://github.com/WalletConnect/utils-rs.git']
# wc = { path = "../utils-rs" }