-
Notifications
You must be signed in to change notification settings - Fork 39
/
Cargo.toml
72 lines (67 loc) · 3.82 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
[package]
edition = { workspace = true }
include = [".sqlx"]
license-file = { workspace = true }
name = "hubble"
publish = false
repository = { workspace = true }
version = "0.1.0"
[lints]
workspace = true
[package.metadata.crane]
test-include = []
[[bin]]
name = "hubble"
path = "src/main.rs"
[dependencies]
alloy = { workspace = true, features = ["eips", "rpc", "rpc-types", "serde", "transports", "transport-http", "providers", "reqwest"] }
aptos-crypto = { workspace = true }
aptos-move-ibc = { workspace = true }
aptos-rest-client = { workspace = true }
aptos-types = { workspace = true }
arbitrum-light-client-types = { workspace = true, features = ["serde"] }
async-trait = "0.1.82"
axum = { workspace = true, features = ["macros", "tokio"] }
backon = "0.4.4"
base64 = { workspace = true }
beacon-api-types = { workspace = true, features = ["serde", "ssz"] }
berachain-light-client-types = { workspace = true, features = ["serde"] }
chain-utils = { workspace = true }
chrono = { workspace = true, features = ["clock"] }
clap = { workspace = true, features = ["derive", "env", "error-context"] }
color-eyre = { workspace = true, features = ["default"] }
cometbft-rpc = { workspace = true }
cometbls-light-client-types = { workspace = true, features = ["proto", "ethabi", "serde"] }
const-hex = "1.12.0"
ethereum-light-client-types = { workspace = true, features = ["serde"] }
futures = { workspace = true, features = ["async-await"] }
hex = { workspace = true }
itertools = "0.13.0"
jsonrpsee = { workspace = true, features = ["tracing", "ws-client", "http-client"] }
lazy_static = { workspace = true }
movement-light-client-types = { workspace = true, features = ["ethabi", "serde"] }
num-traits = "0.2.19"
prometheus = { version = "0.13.3", features = ["process"] }
prost = { workspace = true }
protos = { workspace = true, features = ["client"] }
regex = "1.10.5"
reqwest = { workspace = true, features = ["json", "blocking"] }
scroll-api = { workspace = true }
scroll-light-client-types = { workspace = true, features = ["proto", "serde"] }
serde = { workspace = true, features = ["derive"] }
serde-aux = "4.5.0"
serde_json = { workspace = true }
sqlx = { workspace = true, features = ["postgres", "runtime-tokio", "tls-rustls", "time", "macros", "json", "bigdecimal"] }
tendermint-light-client-types = { workspace = true, features = ["proto", "serde"] }
thiserror = { workspace = true }
time = { workspace = true, features = ["serde"] }
tokio = { workspace = true, features = ["full"] }
tonic = { workspace = true, features = ["transport", "tls", "tls-roots", "tls-webpki-roots"] }
tracing = { workspace = true }
tracing-error = { version = "0.2.0" }
tracing-subscriber = { workspace = true, features = ["env-filter", "json", "tracing-log"] }
unionlabs = { workspace = true, features = ["ethabi"] }
url = { version = "2.4.1", features = ["serde"] }
valuable = { version = "0.1.0", features = ["derive"] }
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"