From 2d36be753ae0212ac9fc9386957256770776aa26 Mon Sep 17 00:00:00 2001 From: James Munns Date: Wed, 28 Aug 2019 12:23:54 +0200 Subject: [PATCH] Add Postcard to the list of Serde Data Formats --- serde/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 84287f04a..927138af8 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -52,6 +52,7 @@ //! *(deserialization only)* //! - [Envy Store], a way to deserialize [AWS Parameter Store] parameters into //! Rust structs. *(deserialization only)* +//! - [Postcard], a `no_std` and embedded-systems friendly compact binary format. //! //! [JSON]: https://github.com/serde-rs/json //! [Bincode]: https://github.com/TyOverby/bincode @@ -69,6 +70,7 @@ //! [Envy Store]: https://github.com/softprops/envy-store //! [Cargo]: http://doc.crates.io/manifest.html //! [AWS Parameter Store]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html +//! [Postcard]: https://github.com/jamesmunns/postcard ////////////////////////////////////////////////////////////////////////////////