From a5da27e16ddf8d5f1856b8f413dbf24d5da0319a Mon Sep 17 00:00:00 2001 From: Bryan Burgers Date: Mon, 21 Dec 2020 10:51:56 -0600 Subject: [PATCH] Add serde_dynamo to the list of data formats --- serde/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 12154da25..6b631c185 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -57,6 +57,8 @@ //! Lisp language family. //! - [D-Bus]'s binary wire format. //! - [FlexBuffers], the schemaless cousin of Google's FlatBuffers zero-copy serialization format. +//! - [DynamoDB Items], the format used by [rusoto_dynamodb] to transfer data to +//! and from DynamoDB. //! //! [JSON]: https://github.com/serde-rs/json //! [Bincode]: https://github.com/servo/bincode @@ -78,6 +80,8 @@ //! [S-expressions]: https://github.com/rotty/lexpr-rs //! [D-Bus]: https://docs.rs/zvariant //! [FlexBuffers]: https://github.com/google/flatbuffers/tree/master/rust/flexbuffers +//! [DynamoDB Items]: https://docs.rs/serde_dynamo +//! [rusoto_dynamodb]: https://docs.rs/rusoto_dynamodb ////////////////////////////////////////////////////////////////////////////////