some fixes

This commit is contained in:
Yuki Okushi 2026-04-18 14:07:01 +09:00
parent d493e962d9
commit 3fe4e383bd
3 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,10 @@
## Unreleased ## Unreleased
- Add support for extracting multi-component path params into a sequence (Vec, tuple, ...). [#3432]
[#3432]: https://github.com/actix/actix-web/pull/3432
## 0.5.4 ## 0.5.4
- Minimum supported Rust version (MSRV) is now 1.88. - Minimum supported Rust version (MSRV) is now 1.88.
@ -14,7 +18,6 @@
## 0.5.3 ## 0.5.3
- Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size. - Add `unicode` crate feature (on-by-default) to switch between `regex` and `regex-lite` as a trade-off between full unicode support and binary size.
- Add support for extracting multi-component path params into a sequence (Vec, tuple, ...)
- Minimum supported Rust version (MSRV) is now 1.72. - Minimum supported Rust version (MSRV) is now 1.72.
## 0.5.2 ## 0.5.2

View File

@ -477,7 +477,6 @@ impl<'de> Deserializer<'de> for Value<'de> {
} }
} }
unsupported_type!(deserialize_seq, "any");
unsupported_type!(deserialize_map, "map"); unsupported_type!(deserialize_map, "map");
unsupported_type!(deserialize_identifier, "identifier"); unsupported_type!(deserialize_identifier, "identifier");
} }

View File

@ -55,7 +55,7 @@ use crate::{
/// ``` /// ```
/// ///
/// Segments matching multiple path components can be deserialized /// Segments matching multiple path components can be deserialized
/// into a Vec<_> to percent-decode the components individually. Empty /// into a `Vec<_>` to percent-decode the components individually. Empty
/// path components are ignored. /// path components are ignored.
/// ///
/// ``` /// ```