chore(web): update `impl-more` to 0.3 (#4052)

This commit is contained in:
Yuki Okushi 2026-04-27 21:20:11 +09:00 committed by GitHub
parent 33aea92a96
commit ea992f97c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 3 deletions

10
Cargo.lock generated
View File

@ -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"

View File

@ -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

View File

@ -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"