From 3fef91f240e6abdbd097a8afc4129662b8426600 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 17:42:13 +0000 Subject: [PATCH] Update hyper requirement from 0.14 to 1.1 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/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.0...v1.1.0) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 129aae6..943d0e6 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" publish = false [dependencies] -hyper = { version = "0.14", features = ["full"] } +hyper = { version = "1.1", features = ["full"] } tokio = { version = "1", features = ["full"] } tracing = "0.1" tracing-logstash = { path = "../tracing-logstash" }