From 37979858edb496295ec35361a026f2849970b7e9 Mon Sep 17 00:00:00 2001 From: Alexis Asseman Date: Mon, 5 Feb 2024 15:09:18 -0800 Subject: [PATCH] build(deps): Set crate versions graphql-v0.3.0 and graphql-http-v0.2.1 Signed-off-by: Alexis Asseman --- Cargo.lock | 10 +++++----- common/Cargo.toml | 2 +- service/Cargo.toml | 4 ++-- tap-agent/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b49904d5..1d9a3ccc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2645,7 +2645,7 @@ dependencies = [ [[package]] name = "graphql" version = "0.3.0" -source = "git+https://github.com/edgeandnode/toolshed?branch=main#af60592fcd8ecf67cb043cc9f2ce7ceb1829370b" +source = "git+https://github.com/edgeandnode/toolshed?tag=graphql-v0.3.0#19ec30dc044137b805528181873f4413b45ab8d4" dependencies = [ "firestorm", "graphql-parser", @@ -2654,8 +2654,8 @@ dependencies = [ [[package]] name = "graphql-http" -version = "0.1.1" -source = "git+https://github.com/edgeandnode/toolshed?branch=main#af60592fcd8ecf67cb043cc9f2ce7ceb1829370b" +version = "0.2.1" +source = "git+https://github.com/edgeandnode/toolshed?tag=graphql-http-v0.2.1#b2ba62e7eedf24b98f999797c4955527de6c3e64" dependencies = [ "anyhow", "async-trait", @@ -6334,7 +6334,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tap_aggregator" version = "0.2.0" -source = "git+https://github.com/semiotic-ai/timeline-aggregation-protocol?branch=aasseman/tap_core_0_7_0_fix_toolshed_dep#f6fc773947dca0cd515a592cb89f1bc0db652e89" +source = "git+https://github.com/semiotic-ai/timeline-aggregation-protocol?branch=aasseman/tap_core_0_7_0_fix_toolshed_dep#ae4fc69a5de5a33528b31284a32f71ae1093186c" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -6362,7 +6362,7 @@ dependencies = [ [[package]] name = "tap_core" version = "0.7.0" -source = "git+https://github.com/semiotic-ai/timeline-aggregation-protocol?branch=aasseman/tap_core_0_7_0_fix_toolshed_dep#f6fc773947dca0cd515a592cb89f1bc0db652e89" +source = "git+https://github.com/semiotic-ai/timeline-aggregation-protocol?branch=aasseman/tap_core_0_7_0_fix_toolshed_dep#ae4fc69a5de5a33528b31284a32f71ae1093186c" dependencies = [ "alloy-sol-types", "anyhow", diff --git a/common/Cargo.toml b/common/Cargo.toml index 04db0c9d..f119a196 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -31,7 +31,7 @@ sqlx = { version = "0.7.1", features = [ ] } tokio = { version = "1.32.0", features = ["full", "macros", "rt"] } thegraph = { git = "https://github.com/edgeandnode/toolshed", tag = "thegraph-v0.5.0" } -graphql-http = { git = "https://github.com/edgeandnode/toolshed", branch = "main", features = [ +graphql-http = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-http-v0.2.1", features = [ "http-reqwest", ] } tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol", branch = "aasseman/tap_core_0_7_0_fix_toolshed_dep" } diff --git a/service/Cargo.toml b/service/Cargo.toml index 2f54201d..e1e009da 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -58,8 +58,8 @@ alloy-primitives = { version = "0.6", features = ["serde"] } alloy-sol-types = "0.6" lazy_static = "1.4.0" thegraph = { git = "https://github.com/edgeandnode/toolshed", tag = "thegraph-v0.5.0" } -graphql = { git = "https://github.com/edgeandnode/toolshed", branch = "main" } -graphql-http = { git = "https://github.com/edgeandnode/toolshed", branch = "main", features = [ +graphql = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-v0.3.0" } +graphql-http = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-http-v0.2.1", features = [ "http-reqwest", ] } build-info = "0.0.34" diff --git a/tap-agent/Cargo.toml b/tap-agent/Cargo.toml index 0f42df16..d5fb845c 100644 --- a/tap-agent/Cargo.toml +++ b/tap-agent/Cargo.toml @@ -37,7 +37,7 @@ tap_core = { git = "https://github.com/semiotic-ai/timeline-aggregation-protocol thiserror = "1.0.44" tokio = { version = "1.33.0" } thegraph = { git = "https://github.com/edgeandnode/toolshed", tag = "thegraph-v0.5.0" } -graphql-http = { git = "https://github.com/edgeandnode/toolshed", branch = "main" } +graphql-http = { git = "https://github.com/edgeandnode/toolshed", tag = "graphql-http-v0.2.1" } tracing = "0.1.37" tracing-subscriber = { version = "0.3", features = [ "env-filter",