diff --git a/Cargo.lock b/Cargo.lock index 20058dbb..6adb1740 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1498,32 +1498,32 @@ dependencies = [ [[package]] name = "graphql-http" version = "0.1.1" +source = "git+https://github.com/edgeandnode/toolshed.git?tag=graphql-http-v0.1.1#1eb97feb7b188324529926300135ffe723989c10" dependencies = [ "anyhow", - "assert_matches", - "async-graphql", "async-trait", - "graphql-parser", - "graphql_client", - "indoc", "reqwest", "serde", "serde_json", "thiserror", - "tokio", ] [[package]] name = "graphql-http" -version = "0.1.1" -source = "git+https://github.com/edgeandnode/toolshed.git?tag=graphql-http-v0.1.1#1eb97feb7b188324529926300135ffe723989c10" +version = "0.2.0" dependencies = [ "anyhow", + "assert_matches", + "async-graphql", "async-trait", + "graphql-parser", + "graphql_client", + "indoc", "reqwest", "serde", "serde_json", "thiserror", + "tokio", ] [[package]] @@ -3246,7 +3246,7 @@ dependencies = [ "bs58", "ethers", "ethers-core", - "graphql-http 0.1.1 (git+https://github.com/edgeandnode/toolshed.git?tag=graphql-http-v0.1.1)", + "graphql-http 0.1.1", "indoc", "lazy_static", "reqwest", diff --git a/README.md b/README.md index bb9400ff..af8976fb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ services. * **graphql-http:** A _reqwest_ based GraphQL-over-HTTP client. ```toml - graphql-http = { git = "https://github.com/eandn/toolshed", tag = "graphql-http-v0.1.1" } + graphql-http = { git = "https://github.com/eandn/toolshed", tag = "graphql-http-v0.2.0" } ``` * **toolshed:** A collection of rust modules that are shared between The Graph's network services. diff --git a/graphql-http/Cargo.toml b/graphql-http/Cargo.toml index b186b670..31dd435c 100644 --- a/graphql-http/Cargo.toml +++ b/graphql-http/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "graphql-http" description = "A reqwest based GraphQL-over-HTTP client" -version = "0.1.1" +version = "0.2.0" edition = "2021" rust-version = "1.63.0"