From 6dffb6221e75e86eefda41fb89f02205fac8b248 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 08:23:26 +0000 Subject: [PATCH] build(deps): Update hyper requirement in /linkerd/app/inbound/fuzz 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.3.1) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- linkerd/app/inbound/fuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkerd/app/inbound/fuzz/Cargo.toml b/linkerd/app/inbound/fuzz/Cargo.toml index af7e226c92..8076c9dc23 100644 --- a/linkerd/app/inbound/fuzz/Cargo.toml +++ b/linkerd/app/inbound/fuzz/Cargo.toml @@ -11,7 +11,7 @@ cargo-fuzz = true [target.'cfg(fuzzing)'.dependencies] arbitrary = { version = "1", features = ["derive"] } -hyper = { version = "0.14", features = ["http1", "http2"] } +hyper = { version = "1.3", features = ["http1", "http2"] } http = "0.2" libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] } linkerd-app-core = { path = "../../core" }