Merge pull request #1260 from flavray/master

Add Avro to the list of supported data formats
This commit is contained in:
David Tolnay 2018-05-27 19:29:19 -07:00 committed by GitHub
commit ab53448bc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,6 +59,8 @@
//! *(deserialization only)* //! *(deserialization only)*
//! - [Redis], deserialize values from Redis when using [redis-rs]. //! - [Redis], deserialize values from Redis when using [redis-rs].
//! *(deserialization only)* //! *(deserialization only)*
//! - [Avro], a binary data serialization format with support for
//! schematized data.
//! //!
//! [JSON]: https://github.com/serde-rs/json //! [JSON]: https://github.com/serde-rs/json
//! [Bincode]: https://github.com/TyOverby/bincode //! [Bincode]: https://github.com/TyOverby/bincode
@ -73,6 +75,7 @@
//! [XML]: https://github.com/RReverser/serde-xml-rs //! [XML]: https://github.com/RReverser/serde-xml-rs
//! [Envy]: https://github.com/softprops/envy //! [Envy]: https://github.com/softprops/envy
//! [Redis]: https://github.com/OneSignal/serde-redis //! [Redis]: https://github.com/OneSignal/serde-redis
//! [Avro]: https://github.com/flavray/avro-rs
//! [Cargo]: http://doc.crates.io/manifest.html //! [Cargo]: http://doc.crates.io/manifest.html
//! [redis-rs]: https://crates.io/crates/redis //! [redis-rs]: https://crates.io/crates/redis