Add a table pointing to the serializers that support serde

This commit is contained in:
Erick Tryzelaar 2015-08-11 07:00:59 -07:00
parent 3c915189f4
commit 0e8d94750b

View File

@ -556,3 +556,14 @@ impl serde::de::Visitor for PointVisitor {
}
}
```
Serialization Formats Using Serde
=================================
| Format | Name |
| ------ | ---- |
| Bincode | [bincode](https://crates.io/crates/bincode) |
| JSON | [serde\_json](https://crates.io/crates/serde_json) |
| MessagePack | [rmp](https://crates.io/crates/rmp) |
| XML | [serde\_xml](https://github.com/serde-rs/xml) |
| YAML | [serde\_yaml](https://github.com/serde-rs/yaml/) |