Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions hugr-persistent/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![doc(hidden)] // TODO: remove when stable

//! Persistent data structure for HUGR mutations.
//!
//! This crate provides a persistent data structure [`PersistentHugr`] that
Expand Down
2 changes: 1 addition & 1 deletion hugr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pub use hugr_passes as algorithms;
pub use hugr_llvm as llvm;

#[cfg(feature = "persistent_unstable")]
#[doc(inline)]
#[doc(hidden)] // TODO: remove when stable
pub use hugr_persistent as persistent;

// Modules with hand-picked re-exports.
Expand Down
Loading