-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (26 loc) · 1.09 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
[package]
name = "thegraph-client-subgraphs"
description = "A client for The Graph network's Subgraphs data service"
version = "0.1.5"
repository = "https://github.com/edgeandnode/toolshed"
authors = ["Lorenzo Delgado (LNSD) <lorenzo@edgeandnode.com>"]
license = "MIT"
edition = "2021"
rust-version = "1.81.0"
[dependencies]
indoc = "2.0.5"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = { version = "1.0.132", features = ["raw_value"] }
thegraph-core = { version = "0.11", path = "../thegraph-core", features = ["serde"] }
thegraph-graphql-http = { version = "0.3.2", path = "../thegraph-graphql-http", features = ["reqwest"] }
thiserror = "2.0.1"
tracing = { version = "0.1.40", default-features = false, features = ["attributes"] }
url = "2.5.3"
[dev-dependencies]
test-with = { version = "0.14.4", default-features = false }
tokio = { version = "1.41.1", features = ["macros", "rt"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]