From 4ef65279ea9bc2ec59a4dbebbfbfa6afc32bd778 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 3 Apr 2024 14:16:42 +0200 Subject: [PATCH] doc update --- README.md | 2 +- src/lib.rs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a0d31e..075fcbc 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ deserializing them with an appropriate `serde` provider like - [`chrono`](https://crates.io/crates/chrono): Add basic support for the `chrono` time library. - [`timelib`](https://crates.io/crates/time): Add basic support for the `time` time library. - [`defmt`](https://defmt.ferrous-systems.com/): Add support for the `defmt` by adding the - `defmt::Format` derive on many objects. + [`defmt::Format`](https://defmt.ferrous-systems.com/format) derive on many types. # Examples diff --git a/src/lib.rs b/src/lib.rs index 6778a4a..5bce0f0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -36,7 +36,11 @@ //! ### Optional features //! //! - [`serde`](https://serde.rs/): Adds `serde` support for most types by adding `Serialize` and -//! `Deserialize` `derive`s +//! `Deserialize` `derives. +//! - [`chrono`](https://crates.io/crates/chrono): Add basic support for the `chrono` time library. +//! - [`timelib`](https://crates.io/crates/time): Add basic support for the `time` time library. +//! - [`defmt`](https://defmt.ferrous-systems.com/): Add support for the `defmt` by adding the +//! - [`defmt::Format`](https://defmt.ferrous-systems.com/format) derive on many types. //! //! ## Module //!