-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (32 loc) · 1.06 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
[package]
name = "firehose-grpc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
async-stream = "0.3.5"
async-trait = "0.1.73"
axum = "0.7.7"
clap = { version = "4.3.23", features = ["derive"] }
ethers-core = "2.0.9"
ethers-providers = { version = "2.0.9", features = ["rustls"] }
futures-core = "0.3.28"
futures-util = "0.3.28"
lazy_static = "1.5.0"
libc = "0.2.147"
prefix-hex = { version = "0.7.1", features = ["std"] }
prometheus = { version = "0.13.4", features = ["process"] }
prost = "0.13.3"
prost-types = "0.13.3"
reqwest = { version = "0.11", features = ["json", "stream"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1.29", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
tonic = "0.12.3"
tonic-reflection = "0.12.3"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
[build-dependencies]
tonic-build = "0.12.3"