From 261625ad586c5a7dc8cab42608281576c556da69 Mon Sep 17 00:00:00 2001 From: "Shane F. Carr" Date: Wed, 3 Sep 2025 14:10:30 -0700 Subject: [PATCH] Advertise that zerotrie uses safe Rust --- utils/zerotrie/src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) 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 //! //! ```