From ef6ed1d1be9a181a3a6d19d0860befe5d7b279b7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 22 May 2020 12:49:15 -0700 Subject: [PATCH] Copy some new links from serde.rs to the crate-level doc --- serde/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/serde/src/lib.rs b/serde/src/lib.rs index 1399305a..b41eda62 100644 --- a/serde/src/lib.rs +++ b/serde/src/lib.rs @@ -53,6 +53,9 @@ //! *(deserialization only)* //! - [Envy Store], a way to deserialize [AWS Parameter Store] parameters into //! Rust structs. *(deserialization only)* +//! - [S-expressions], the textual representation of code and data used by the +//! Lisp language family. +//! - [D-Bus]'s binary wire format. //! //! [JSON]: https://github.com/serde-rs/json //! [Bincode]: https://github.com/TyOverby/bincode @@ -71,6 +74,8 @@ //! [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 +//! [S-expressions]: https://github.com/rotty/lexpr-rs +//! [D-Bus]: https://docs.rs/zvariant ////////////////////////////////////////////////////////////////////////////////