From 356407f49b9624dcb65a7286507e98cd5e38c767 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 08:37:06 +0000 Subject: [PATCH] Bump graphql-ws-client from 0.5.0 to 0.8.2 in /backend Bumps [graphql-ws-client](https://github.com/obmarg/graphql-ws-client) from 0.5.0 to 0.8.2. - [Release notes](https://github.com/obmarg/graphql-ws-client/releases) - [Changelog](https://github.com/obmarg/graphql-ws-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/obmarg/graphql-ws-client/compare/v0.5.0...v0.8.2) --- updated-dependencies: - dependency-name: graphql-ws-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 7 +++---- backend/chimp_controller/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 97ff9cfe..2af0de3b 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -1912,11 +1912,11 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "graphql-ws-client" -version = "0.5.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09d6c77c2de260d565a53df302f27412930a961de7cbecfdfa18e61fe0c59604" +checksum = "db7802310624d21a55797a3bc442dbe405424e9b2c967f86fb415634976f9a97" dependencies = [ - "async-tungstenite", + "async-trait", "cynic", "futures", "log", @@ -1924,7 +1924,6 @@ dependencies = [ "serde", "serde_json", "thiserror", - "uuid", ] [[package]] diff --git a/backend/chimp_controller/Cargo.toml b/backend/chimp_controller/Cargo.toml index 22bff168..cc67ba31 100644 --- a/backend/chimp_controller/Cargo.toml +++ b/backend/chimp_controller/Cargo.toml @@ -11,7 +11,7 @@ clap = { workspace = true } cynic = { version = "3.4.3", features = ["http-reqwest"] } dotenvy = { workspace = true } futures-util = { version = "0.3.30" } -graphql-ws-client = { version = "0.5.0", features = ["cynic"] } +graphql-ws-client = { version = "0.8.2", features = ["cynic"] } lapin = { version = "2.3.3", default-features = false, features = ["rustls"] } reqwest = { version = "0.11.24" } tokio = { workspace = true, features = ["sync"] }