From 6554241ed7e45bf3bb96a434a9bbbd52107c1440 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 5 Dec 2022 00:17:37 +0100 Subject: [PATCH] doc correction --- README.md | 3 +-- src/lib.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1c53c87..c333f57 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,7 @@ Currently, this includes the following components: `spacepackets` supports various runtime environments and is also suitable for `no_std` environments. -It offers support for [`serde`](https://serde.rs/). The Space Packet, PUS TM and TC -implementations derive the `serde` `Serialize` and `Deserialize` trait. This allows serializing and +It also offers optional support for [`serde`](https://serde.rs/). This allows serializing and deserializing them with an appropriate `serde` provider like [`postcard`](https://github.com/jamesmunns/postcard). diff --git a/src/lib.rs b/src/lib.rs index f9b8840..c7a4136 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,8 +16,7 @@ //! //! `spacepackets` supports various runtime environments and is also suitable for `no_std` environments. //! -//! It also offers support for [`serde`](https://serde.rs/). The Space Packet, PUS TM and TC -//! implementations derive the `serde` `Serialize` and `Deserialize` trait. This allows serializing and +//! It also offers optional support for [`serde`](https://serde.rs/). This allows serializing and //! deserializing them with an appropriate `serde` provider like //! [`postcard`](https://github.com/jamesmunns/postcard). //!