From ea992f97c30bc6336fee93a6819b7be2f1cb63a1 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Mon, 27 Apr 2026 21:20:11 +0900 Subject: [PATCH] chore(web): update `impl-more` to 0.3 (#4052) --- Cargo.lock | 10 ++++++++-- actix-web/CHANGES.md | 1 + actix-web/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 69635d5ea..88748281e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,7 +294,7 @@ dependencies = [ "futures-core", "http 0.2.12", "http 1.4.0", - "impl-more", + "impl-more 0.1.9", "openssl", "pin-project-lite", "rustls-native-certs", @@ -354,7 +354,7 @@ dependencies = [ "foldhash 0.2.0", "futures-core", "futures-util", - "impl-more", + "impl-more 0.3.1", "itoa", "language-tags", "log", @@ -1802,6 +1802,12 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2" +[[package]] +name = "impl-more" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35a84fd5aa25fae5c0f4a33d9cac2ca017fc622cbd089be2229993514990f870" + [[package]] name = "indexmap" version = "2.14.0" diff --git a/actix-web/CHANGES.md b/actix-web/CHANGES.md index 2c5c05290..e3b31532b 100644 --- a/actix-web/CHANGES.md +++ b/actix-web/CHANGES.md @@ -10,6 +10,7 @@ - Fix app data being retained after graceful shutdown with in-flight slow request bodies. [#3100] - Update `foldhash` dependency to `0.2`. - Update `rand` dependency to `0.10`. +- Update `impl-more` dependency to `0.3`. - Add `HttpServer::h1_write_buffer_size()`. [#3944]: https://github.com/actix/actix-web/pull/3944 diff --git a/actix-web/Cargo.toml b/actix-web/Cargo.toml index 01dbf79a9..288e78d08 100644 --- a/actix-web/Cargo.toml +++ b/actix-web/Cargo.toml @@ -150,7 +150,7 @@ encoding_rs = "0.8" foldhash = "0.2" futures-core = { version = "0.3.17", default-features = false } futures-util = { version = "0.3.17", default-features = false } -impl-more = "0.1.4" +impl-more = "0.3.1" itoa = "1" language-tags = "0.3" log = "0.4"