Age | Commit message (Collapse) | Author |
|
|
|
* Fix axum test
* Add comments explaining CI strategy
* Bump deps and increase MSRV to 1.63
* Pin `csv` to an older version for MSRV
* Keep serde_with as 2.0 for MSRV too
|
|
* update axum to v0.8
* update rust-version to 1.75
* remove async_trait
* Revert msrv change
---------
Co-authored-by: Sam Scott <sam.scott89@gmail.com>
|
|
* clippy::multiple_bound_locations
* A few more clippy fixes.
---------
Co-authored-by: Sam Scott <sam@osohq.com>
|
|
Addresses #101
|
|
* Remove `then_some` to stay compatible with earlier versions of Rust
* Fix CI builds to build on old versions of Rust
* Trying 1.61
|
|
* Deprecate support for actix-web 2.0
* Update actix.rs
Added QsForm to support application/x-www-form-urlencoded Web forms
* Update actix.rs with working adjustments
Added Into_inner function for both QsQuery and QsForm to behave like actix_webs default extractors
Made some fixes
* Added missing code to actix.rs for QsForm
* Update actix.rs
Added new trait "IntoInner"
Fixed QsFormConfig not correctly setting new settings correctly
* Update actix.rs
Removed trait requirement for using into_inner() now functions as a function.
* Update src/actix.rs
* Remove redundant config, add tests
* Add changelog
* Bump serde qs version
* Add Debug bound to docs example
---------
Co-authored-by: nMessage <135612238+nMessage@users.noreply.github.com>
|
|
|
|
deserializer. (#91)
* Add `Deserializer::new` to crate a new deserializer, and public deserializer.
* Update mod.rs
Co-authored-by: Paul Hansen <mail@paul.rs>
---------
Co-authored-by: Paul Hansen <mail@paul.rs>
|
|
Partially address #71
|
|
* fix unit type serialization issue
`()` and `A` returned a no key error previously. This is very
unergonimic if you just have a trait bound for Serialize and want to
generate an empty querystring `?`
* add support for deserializing unit structs
* Comment updates for serializer methods
|
|
|
|
|
|
|
|
|
|
QsQuery's FromRequest implementation expects a plain QsQueryConfig
extension, i.e., not an Arc.
|
|
|
|
|
|
This change makes non-strict mode percent-decode utf-8 lossily.
This means that invalid UTF-8 percent encoded sequences, such as `%E9`, are
decoded as the unicode replacement character (� `U+FFFD`).
Refs: https://github.com/samscott89/serde_qs/issues/43
|
|
|
|
|
|
* Add an `actix` feature to provide a nicer error message
for people migrating from <= 0.8
* Fix tests.
* Bump version in readme.
|
|
* Remove all default actix features
* Set MSRV
* Have `actix4` feature, instead of `actix`
* enable actix tests for all features
|
|
|
|
|
|
|
|
|
|
* add tracing, add tests, default to empty string
|
|
|
|
Fixes #40.
Thanks to @faulesocke for reporting.
|
|
|
|
|
|
Fixes #38
Thanks to @pooyamb for reporting.
|
|
|
|
thiserror provides a simpler interface than error-chain, directly
generating an error enum similar to what could be written by hand. It
also reduces dependencies; error-chain pulls in backtrace which
currently pulls in gimli, which is fairly heavyweight.
This changes the error type's interface, so it'll require a bump to
0.7.0.
|
|
|
|
|
|
|
|
* update dependencies
- actix-web v2
- percent encoding v2.1
- rust 2018 edition
- remove rustfmt no longer supported rules
* ci: add feature build matrix
* fix actix unit tests
Co-authored-by: Mario Reder <mreder1289@gmail.com>
|
|
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
|
|
One is deprecated and the other has been renamed
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
|
|
resolves #23
|
|
Update dependencies.
|
|
This allows switching to non-strict parsing mode
resolves #21
|
|
|
|
Co-Authored-By: agrinman <agrinman@users.noreply.github.com>
|
|
|
|
|
|
|
|
|