From 0e8d94750b1e43d30e5789bdd0bef4886034e46b Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Tue, 11 Aug 2015 07:00:59 -0700 Subject: [PATCH] Add a table pointing to the serializers that support serde --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 2274a185..ff5dc575 100644 --- a/README.md +++ b/README.md @@ -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/) |