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