From 4d55f1b5b6d58d6d52baed2d60d33afbac74acb2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 14:19:56 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.6 Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/v0.14.32/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.0...v0.14.32) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- saphir/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saphir/Cargo.toml b/saphir/Cargo.toml index 0a801b5..f7372a7 100644 --- a/saphir/Cargo.toml +++ b/saphir/Cargo.toml @@ -43,7 +43,7 @@ tracing-instrument = ["tracing", "saphir_macro/tracing-instrument"] [dependencies] async-stream = "0.3" log = "0.4" -hyper = { version = "0.14", features = ["stream", "server"] } +hyper = { version = "1.6", features = ["stream", "server"] } tokio = { version = "1", features = ["rt-multi-thread", "net", "sync", "time", "parking_lot"] } futures = "0.3" futures-util = "0.3"