From 38d4f0e06c85641860f5267282fe7131f1e3cab4 Mon Sep 17 00:00:00 2001 From: Flavien Raynaud Date: Wed, 16 May 2018 16:22:25 +0100 Subject: [PATCH] Add Avro to the list of supported data formats --- serde/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index c5773b4f..274470c8 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -59,6 +59,8 @@ //! *(deserialization only)* //! - [Redis], deserialize values from Redis when using [redis-rs]. //! *(deserialization only)* +//! - [Avro], a binary data serialization format with support for +//! schematized data. //! //! [JSON]: https://github.com/serde-rs/json //! [Bincode]: https://github.com/TyOverby/bincode @@ -73,6 +75,7 @@ //! [XML]: https://github.com/RReverser/serde-xml-rs //! [Envy]: https://github.com/softprops/envy //! [Redis]: https://github.com/OneSignal/serde-redis +//! [Avro]: https://github.com/flavray/avro-rs //! [Cargo]: http://doc.crates.io/manifest.html //! [redis-rs]: https://crates.io/crates/redis