From cbaea1f56fa2fff5af528ce01dd298137157232b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 04:29:18 +0000 Subject: [PATCH] Update rustls requirement from 0.20 to 0.21 in /gremlin-client Updates the requirements on [rustls](https://github.com/rustls/rustls) to permit the latest version. - [Release notes](https://github.com/rustls/rustls/releases) - [Commits](https://github.com/rustls/rustls/compare/v/0.20.0...v/0.21.7) --- updated-dependencies: - dependency-name: rustls 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..71c1ac70 100644 --- a/gremlin-client/Cargo.toml +++ b/gremlin-client/Cargo.toml @@ -51,7 +51,7 @@ async-tls = { version = "0.12", optional = true } tokio-native-tls = { version = "0.3.0", optional = true } tokio-stream = { version = "0.1.2", optional = true } gremlin-derive = { path="../gremlin-derive", version="0.1", optional=true } -rustls = { version="0.20", features = ["dangerous_configuration"], optional = true} +rustls = { version="0.21", features = ["dangerous_configuration"], optional = true} webpki = { version = "0.22.2", optional = true } thiserror = "1.0.20"