From 10b531eb306d82c68afbead9126930e680d2dbff Mon Sep 17 00:00:00 2001 From: crapStone Date: Sat, 27 Nov 2021 18:55:37 +0100 Subject: [PATCH] generate README --- ciborium/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ciborium/README.md b/ciborium/README.md index 2e35ff1..b60c35e 100644 --- a/ciborium/README.md +++ b/ciborium/README.md @@ -11,12 +11,12 @@ Ciborium contains CBOR serialization and deserialization implementations for ser ## Quick Start -You're probably looking for [`de::from_reader()`](crate::de::from_reader) -and [`ser::into_writer()`](crate::ser::into_writer), which are +You're probably looking for [`from_reader()`](crate::de::from_reader) +and [`into_writer()`](crate::ser::into_writer), which are the main functions. Note that byte slices are also readers and writers and can be passed to these functions just as streams can. -For dynamic CBOR value creation/inspection, see [`value::Value`](crate::value::Value). +For dynamic CBOR value creation/inspection, see [`Value`](crate::value::Value). ## Design Decisions