Merge pull request #135 from erickt/doc

Add a table pointing to the serializers that support serde
This commit is contained in:
Erick Tryzelaar
2015-08-11 07:02:22 -07:00
+11
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/) |