From 36edaab7a552fb2bcc70d79245ec602f78d79f7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 18:20:19 +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/v0.14.28/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.0...v0.14.28) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- metrics-exporter-prometheus/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics-exporter-prometheus/Cargo.toml b/metrics-exporter-prometheus/Cargo.toml index c16785c2..4ed8d178 100644 --- a/metrics-exporter-prometheus/Cargo.toml +++ b/metrics-exporter-prometheus/Cargo.toml @@ -31,7 +31,7 @@ indexmap = { version = "1", default-features = false } base64 = { version = "0.21.0", default-features = false, features = ["std"] } # Optional -hyper = { version = "0.14", default-features = false, features = ["tcp", "http1"], optional = true } +hyper = { version = "1.1", default-features = false, features = ["tcp", "http1"], optional = true } ipnet = { version = "2", optional = true } tokio = { version = "1", features = ["rt", "net", "time"], optional = true } tracing = { version = "0.1.26", optional = true }