-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 1.07 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
[package]
name = "graphcast-cli"
version = "0.0.2"
edition = "2021"
authors = ["GraphOps (axiomatic-aardvark, hopeyen)"]
description = "CLI to participate in Graphcast network"
license = "Apache-2.0"
repository = "https://github.com/graphops/graphcast-cli"
keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"]
categories = ["network-programming", "web-programming::http-client"]
[dependencies]
graphcast-sdk = "0.4.2"
once_cell = "1.17"
chrono = "0.4"
serde = { version = "1.0.163", features = ["rc"] }
serde_json = "1.0.96"
derive-getters = "0.2.1"
tokio = { version = "1.28.1", features = ["full", "rt"] }
anyhow = "1.0"
thiserror = "1.0.40"
ethers = "2.0.4"
dotenv = "0.15"
tracing = "0.1"
clap = { version = "4.3.1", features = ["derive", "env"] }
prost = "0.11"
ethers-contract = "2.0.4"
ethers-core = "2.0.4"
ethers-derive-eip712 = "1.0.2"
async-graphql = "4.0.16"
reqwest = "0.11.20"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
# Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"]