Merge pull request #1615 from jamesmunns/patch-1

Add Postcard to the list of Serde Data Formats
This commit is contained in:
David Tolnay 2019-08-28 10:17:43 -07:00 committed by GitHub
commit 4cea81f93f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,6 +52,7 @@
//! *(deserialization only)* //! *(deserialization only)*
//! - [Envy Store], a way to deserialize [AWS Parameter Store] parameters into //! - [Envy Store], a way to deserialize [AWS Parameter Store] parameters into
//! Rust structs. *(deserialization only)* //! Rust structs. *(deserialization only)*
//! - [Postcard], a `no_std` and embedded-systems friendly compact binary format.
//! //!
//! [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
@ -69,6 +70,7 @@
//! [Envy Store]: https://github.com/softprops/envy-store //! [Envy Store]: https://github.com/softprops/envy-store
//! [Cargo]: http://doc.crates.io/manifest.html //! [Cargo]: http://doc.crates.io/manifest.html
//! [AWS Parameter Store]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html //! [AWS Parameter Store]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html
//! [Postcard]: https://github.com/jamesmunns/postcard
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////