types/ruma-serde
2021-01-02 13:04:39 +01:00
..
src serde: Small code style change 2020-12-24 02:49:55 +01:00
tests Move Outgoing test out of ruma_serde to avoid cyclic dev-dependency 2020-12-02 18:51:35 +01:00
Cargo.toml Release ruma-serde 0.3.0 2021-01-02 13:04:39 +01:00
CHANGELOG.md Release ruma-serde 0.3.0 2021-01-02 13:04:39 +01:00
README.md Update MSRV policy 2020-07-22 23:05:50 +02:00

ruma-serde

This crate contains (de)serialization helpers for other ruma crates.

Part of that is a fork of serde_urlencoded, with support for sequences in Deserialize / Serialize structs (e.g. Vec<Something>) that are (de)serialized as field=val1&field=val2 (instead of the more common field[]=val1&field[]=val2 format supported by other crates like serde_qs).