From d6ad520ea5c2f1af45e9be746a15794124c2f64b Mon Sep 17 00:00:00 2001 From: Tyler Beckman Date: Fri, 25 Oct 2024 19:59:39 -0600 Subject: [PATCH] Add more docs (im just testing jj lol) --- src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f1fc933..308c392 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,11 @@ //! [RFC6926] in rust. //! //! Parsing logic for CT structures is defined in the [`parsing`] module. This -//! primarily uses the [`nom`] crate for parsing +//! primarily uses the [`nom`] crate for parsing, doing zero-allocation parsing +//! followed by parsing it into a struct. +//! +//! The [`merkle`] module contains the rest of the merkle tree logic, such as +//! the specific data types and hashing logic //! //! [RFC6926]: https://datatracker.ietf.org/doc/html/rfc6962