From f181e7559b73ad6e703c53ce79a54a6662a37a3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 04:38:18 +0000 Subject: [PATCH] Update async-tungstenite requirement in /gremlin-client Updates the requirements on [async-tungstenite](https://github.com/sdroege/async-tungstenite) to permit the latest version. - [Changelog](https://github.com/sdroege/async-tungstenite/blob/main/CHANGELOG.md) - [Commits](https://github.com/sdroege/async-tungstenite/compare/0.23.0...0.24.0) --- updated-dependencies: - dependency-name: async-tungstenite dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- gremlin-client/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gremlin-client/Cargo.toml b/gremlin-client/Cargo.toml index eda2c516..d3867dc2 100644 --- a/gremlin-client/Cargo.toml +++ b/gremlin-client/Cargo.toml @@ -44,7 +44,7 @@ lazy_static = "1.3.0" base64 = "0.21.4" native-tls = "0.2.3" tungstenite = { version = "0.20.1", features = ["native-tls"] } -async-tungstenite = { version = "0.23", optional = true, default-features=false} +async-tungstenite = { version = "0.24", optional = true, default-features=false} async-std = { version = "1.4.0", optional = true, features = ["unstable","attributes"] } async-trait = { version = "0.1.10", optional = true } async-tls = { version = "0.12", optional = true }