-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (82 loc) · 2.29 KB
/
Cargo.toml
File metadata and controls
94 lines (82 loc) · 2.29 KB
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
[package]
edition = "2021"
name = "rmb"
version = "0.1.0"
[[bin]]
name = "rmb-peer"
path = "src/bins/rmb-peer.rs"
[[bin]]
name = "rmb-relay"
path = "src/bins/rmb-relay.rs"
[dependencies]
anyhow = "1"
async-trait = "0.1"
base64 = "0.13"
bb8-redis = "0.16"
redis = { version = "0.26", features = ["streams", "aio", "tokio-comp"] }
clap = { version = "4", features = ["derive"] }
futures = "0.3"
arc-swap = "1.5"
hex = { version = "0.4", features = ["alloc"] }
http = "1"
log = "0.4"
md5 = "0.7.0"
nix = "0.24"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
bincode = "1"
simple_logger = "2.1"
thiserror = "1.0.31"
tokio = { version = "1", features = ["full"] }
tokio-retry = "0.3"
uuid = { version = "1", features = ["v4"] }
jsonrpsee-core = "0.14.0"
mime = "0.3"
mpart-async = "0.6.0"
url = "2.3.1"
tokio-tungstenite = { version = "0.21", features = ["native-tls"] }
futures-util = "0.3"
jwt = "0.16"
subxt = { version = "0.28.0", features = ["substrate-compat"] }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
"derive",
"full",
"bit-vec",
] }
itertools = "0.11"
ttl_cache = "0.5"
tokio-util = "0.7"
# for static build
openssl = { version = "0.10", features = ["vendored"] }
workers = { git = "https://github.com/threefoldtech/tokio-worker-pool", branch = "main" }
protobuf = { version = "3.2.0", features = ["with-bytes"] }
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["server", "http1", "http2", "tokio"] }
http-body-util = "0.1"
hyper-tungstenite = "0.14"
lazy_static = "1.4.0"
prometheus = { version = "0.13", features = ["process"] }
tfchain-client = { git = "https://github.com/threefoldtech/tfchain.git", version = "0.2.0", branch = "development" }
reqwest = "0.12"
bytes = "1"
# for e2e
bip39 = { version = "2.0.0", default-features = false }
substrate-bip39 = { version = "=0.4.5" }
secp256k1 = "0.26"
aes-gcm = { version = "0.10", features = ["aes", "alloc"] }
sha2 = "0.10"
rand_core = "0.6"
# for limiters
lru = "0.9.0"
rand = "0.8.5"
tokio-stream = "0.1.14"
async-stream = "0.3.5"
derive_more = { version = "2.0.1", features = ["full"] }
[build-dependencies]
git-version = "0.3.5"
protobuf-codegen = "3.2.0"
[dev-dependencies]
httpmock = "0.6"
[features]
tracker = []
test = []