-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
112 lines (103 loc) · 2.51 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
106
107
108
109
110
111
112
[package]
name = "mintpool"
version = "0.1.0"
edition = "2021"
[lib]
name = "mintpool"
path = "src/lib.rs"
[[bin]]
name = "mintpool"
path = "src/main.rs"
[dependencies]
xxhash-rust = { version = "0.8.10", features = ["xxh3"] }
const-hex = "1.11.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "json"] }
test-log = { version = "0.2.16", features = ["trace"] }
libp2p = { version = "0.53.2", features = [
"tokio",
"tcp",
"macros",
"noise",
"yamux",
"kad",
"gossipsub",
"identify",
"ping",
"dns",
"request-response",
"cbor",
"quic",
"relay",
"autonat",
"dcutr",
"serde",
] }
libp2p-relay-manager = "0.2.4"
tokio = { version = "1.36.0", features = ["full"] }
eyre = "0.6.12"
regex = "1.10.4"
async-trait = "0.1.77"
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
serde_cbor = "0.11.2"
clap = { version = "4.5.2", features = ["derive"] }
envconfig = "0.10.0"
colored = "2.1.0"
sqlx = { version = "0.7.4", features = [
"runtime-tokio",
"macros",
"sqlite",
"postgres",
"any",
"chrono",
] }
once_cell = "1.19.0"
rand = "0.8.5"
runit = "0.1.0"
futures-util = "0.3"
futures-ticker = "0.0.3"
mini-moka = "0.10.3"
axum = "0.7.5"
reqwest = { version = "0.12.3", features = ["json"] }
url = "2.5.0"
futures = "0.3.30"
sha256 = "1.5.0"
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.5.2", features = ["cors", "compression-full", "trace"] }
alloy = { git = "https://github.com/alloy-rs/alloy", rev = "bbef8de", features = [
"sol-types",
"network",
"rpc-types-eth",
"pubsub",
"json",
"rpc-client",
"provider-http",
"provider-ws",
"json-rpc",
"rpc-client-ws",
"rpc-types-json",
"signers",
"transport-ws",
"eip712",
"serde",
"json",
"json-abi",
"node-bindings",
"contract",
"signer-wallet"
] }
chrono = { version = "0.4.38", features = ["serde"] }
tracing-opentelemetry = "0.23.0"
opentelemetry = { version = "0.22.0", features = ["metrics"] }
opentelemetry_api = { version = "0.20.0", features = ["metrics"] }
opentelemetry_sdk = { version = "0.22.1", features = ["metrics", "rt-tokio"] }
opentelemetry-stdout = { version = "0.3.0", features = ["logs", "metrics", "trace"] }
opentelemetry-prometheus = "0.15.0"
prometheus = "0.13.4"
built = "0.7.2"
itertools = "0.12.1"
[profile.dev.package.sqlx-macros]
opt-level = 3
[build-dependencies]
built = { version = "0.7.2", features = ["git2"] }