Add more docs (im just testing jj lol)

This commit is contained in:
Tyler Beckman 2024-10-25 19:59:39 -06:00
parent df1d7e54ca
commit 1f20092338
Signed by: Ty
GPG key ID: 2813440C772555A4

View file

@ -2,7 +2,11 @@
//! [RFC6926] in rust. //! [RFC6926] in rust.
//! //!
//! Parsing logic for CT structures is defined in the [`parsing`] module. This //! 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 //! [RFC6926]: https://datatracker.ietf.org/doc/html/rfc6962