diff --git a/utils/zerotrie/src/lib.rs b/utils/zerotrie/src/lib.rs index 9036426a4ca..f6ee10e3b00 100644 --- a/utils/zerotrie/src/lib.rs +++ b/utils/zerotrie/src/lib.rs @@ -10,6 +10,13 @@ //! //! There are multiple variants of [`ZeroTrie`] optimized for different use cases. //! +//! # Safe Rust +//! +//! All runtime lookup code in this crate is 100% safe Rust. +//! +//! A small amount of unsafe Rust is used in the builder code as well as for implementing +//! unsafe traits such as [`VarULE`](zerovec::ule::VarULE). +//! //! # Examples //! //! ```