From 16044b292b3ad34b0d296044bbec9c4af6bba70e Mon Sep 17 00:00:00 2001 From: alistairjevans Date: Mon, 6 Jul 2026 14:42:34 +0100 Subject: [PATCH] Update hyper to 1.10.1 --- Cargo.lock | 13 +++++++------ ext/hyper_ruby/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0e14e36..0ad3e20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -366,9 +366,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "h2" -version = "0.4.7" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" dependencies = [ "atomic-waker", "bytes", @@ -443,13 +443,14 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "1.6.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", + "futures-core", "h2", "http", "http-body", diff --git a/ext/hyper_ruby/Cargo.toml b/ext/hyper_ruby/Cargo.toml index 3098e90..2844520 100644 --- a/ext/hyper_ruby/Cargo.toml +++ b/ext/hyper_ruby/Cargo.toml @@ -16,7 +16,7 @@ bytes = "1.5" tokio-stream = { version = "0.1", features = ["net"] } crossbeam-channel = "0.5.14" rb-sys = "0.9.110" -hyper = { version = "1.0", features = ["http1", "http2", "server"] } +hyper = { version = "1.10", features = ["http1", "http2", "server"] } hyper-util = { version = "0.1", features = ["tokio", "server", "server-graceful", "server-auto", "http1", "http2"] } http-body-util = "0.1.2" jemallocator = { version = "0.5.4", features = ["disable_initial_exec_tls"] }