From 7815bce43428647082e4ad074665e3b1c4e232a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:01:07 +0000 Subject: [PATCH] build(deps): update ring requirement from 0.16 to 0.17 Updates the requirements on [ring](https://github.com/briansmith/ring) to permit the latest version. - [Commits](https://github.com/briansmith/ring/commits) --- updated-dependencies: - dependency-name: ring dependency-type: direct:production ... Fixes #1678 Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/Cargo.toml | 2 +- quiche/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Cargo.toml b/apps/Cargo.toml index f6bc053dac..135021ddd0 100644 --- a/apps/Cargo.toml +++ b/apps/Cargo.toml @@ -27,7 +27,7 @@ mio = { version = "0.8", features = ["net", "os-poll"] } url = "1" log = "0.4" octets = { version = "0.2", path = "../octets" } -ring = "0.16" +ring = "0.17" quiche = { path = "../quiche" } libc = "0.2" nix = { version = "0.27", features = ["net", "socket", "uio"] } diff --git a/quiche/Cargo.toml b/quiche/Cargo.toml index f3c47e1afe..5fbbb01b98 100644 --- a/quiche/Cargo.toml +++ b/quiche/Cargo.toml @@ -58,7 +58,7 @@ either = { version = "1.8", default-features = false } log = { version = "0.4", features = ["std"] } libc = "0.2" libm = "0.2" -ring = "0.16" +ring = "0.17" slab = "0.4" once_cell = "1" octets = { version = "0.2", path = "../octets" }