summaryrefslogtreecommitdiff
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2021-10-01bump version.Sam Scott
2021-10-01Update flatten workaround.Sam Scott
2021-10-01Remove all default actix features (#53)Omid Rad
2021-06-29-> 0.8.4Sam Scott
2021-06-09Bump version.Sam Scott
2021-06-09Update deps, pin to minor version instead of patchSam Scott
2021-03-09Bump to 0.8.3 + bump deps.Sam Scott
2021-03-09Add warp support (#46)Glitch
* add tracing, add tests, default to empty string
2020-12-17Bump version.Sam Scott
2020-12-06Bump minor version.Sam Scott
- Fix serialization of byte arrays.
2020-12-06Serialize bytes as percent-encoded data.Sam Scott
Fixes #40. Thanks to @faulesocke for reporting.
2020-12-06Version bump to 0.8Sam Scott
- actix-web v3 is the default for the `actix` feature - actix-web v2 is supported by feature `actix2`.
2020-12-06Add support for actix 3.Sam Scott
2020-12-06Re-release version.Sam Scott
2020-12-06Stick to actix-web 2 for minor release.Sam Scott
2020-12-06Minor version bump.Sam Scott
- Fixes double encoding of keys on serializing - Supports Unit enum variants for keys.
2020-12-06Bump dependencies.Sam Scott
2020-08-27Version bump.Sam Scott
2020-08-27Switch from error-chain to thiserror (#33)Josh Triplett
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.
2020-06-23Bump version.Sam Scott
2020-06-03Support actix-web v2 (#30)Sam Scott
* 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>
2020-06-03update percent-encodingMarc-Antoine Perennou
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2020-06-03update randMarc-Antoine Perennou
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2020-06-03update serde-urlencodedMarc-Antoine Perennou
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2019-11-12Bump version.Sam Scott
Update dependencies.
2019-06-10Bump version number.Sam Scott
2019-06-10update actix versiondaddinuz
2019-05-15update actix support to v1daddinuz
2019-04-28Add badges and bump version.Sam Scott
2019-01-23Bump version.Sam Scott
2019-01-23Add feature for easy use in `actix_web` extractors.Sam Scott
2019-01-23Bump version to update docs.Sam Scott
2019-01-21Remove unused dependencies from Cargo.toml.Sam Scott
2019-01-21Bump version.Sam Scott
2019-01-21Bump version to 0.4.2.Sam Scott
2019-01-21Minor fixes:Sam Scott
- Suppress deprecated warning from error-chain - Fix clippy issues - Update dependencies - Update example to csv 1.0
2018-07-09Let warnings through.Sam Scott
2018-03-01Set version to 0.4 release.Sam Scott
2018-01-03Update deps.Sam Scott
2018-01-03Tweak parsing logic of encoded brackets in non-strict mode.Sam Scott
When parsing a value, always just consume all the text, and ignore special encoded of brackets. (Hence non-strict mode only applies to keys)
2017-11-09Release candidate for 0.4.Sam Scott
Breaking changes in this release. Serialization does not encode square brackets, but percent encodes everything else (keys/values). Deserialization has a strict mode, which must be turned off to allow percent-encoded square brackets. Strict is the default.
2017-11-09Refactor Serialize logic to produce correct strings.Sam Scott
Removes the dependency on the `url` crate because we only need the percent decoding, with our own encoding set. All keys/values are conservatively percent-encoded, but the square brackets are untouched. Compatible with strict decoding, and potentially less error prone.
2017-11-05Update data-encoding major versionJulien Cretin
2017-11-01Bump version to 0.3.Sam Scott
2017-10-31New parsing strategy.Sam Scott
- Only perform the percent decoding at the final step (fixes #10). - Reduce allocations by borrowing as much as possible.
2017-09-21Bump version to 0.2.2.Sam Scott
2017-09-21fix parse_seq_value not decoding '+' to ' 'Jacob Brown
2017-05-28Bump version to 0.2.1.Sam Scott
2017-05-22Revert "Stop LevelDeserializer from coercing values too early."Sam Scott
This reverts commit 6429b975c6cbcf5d7e0c2b1d02026f8d46b5c50f.
2017-05-21Stop LevelDeserializer from coercing values too early.Sam Scott
When deserializing types such as TupleStructs, if the `Level` value is a map, let's call `visit_map` instead of coercing it to a sequence immediately.