From a0eb235f0a85015d754caae5fda27f56dfe6e953 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 24 Feb 2016 00:22:48 -0800 Subject: [PATCH] YAML serde based on yaml-rust --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 58f152e3..a19c3b88 100644 --- a/README.md +++ b/README.md @@ -704,10 +704,10 @@ Field Annotations: 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/) | +| 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/dtolnay/serde-yaml) |