-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
43 lines (39 loc) · 909 Bytes
/
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
[package]
name = "thegarii"
authors = ['[email protected]']
description = 'thegarii firehose service'
version = "0.1.1"
license = "GPL-3.0"
homepage = 'https://github.com/ChainSafe/the-garii'
repository = 'https://github.com/ChainSafe/the-garii'
edition = "2021"
readme = "./README.md"
[[bin]]
name = "thegarii"
path = "bin/thegarii.rs"
[dependencies]
anyhow = "1"
async-trait = "0.1.52"
base64-url = "3.0.0"
bincode = "1.3.3"
dirs = "6.0.0"
env_logger = "0.11.6"
hex = "0.4.3"
futures = "0.3.21"
log = "0.4.14"
prost = "0.13.4"
prost-types = "0.13.4"
rand = "0.8.5"
reqwest = { version = "0.12.12", features = ["gzip", "json"] }
serde = { version = "^1", features = ["derive"] }
serde_json = "1.0.79"
structopt = "0.3.26"
thiserror = "2.0.11"
tokio = { version = "1", features = ["full"] }
uint = "0.10.0"
base64 = "0.22.1"
[features]
default = [ ]
full = [ ]
[build-dependencies]
tonic-build = "0.12.3"