clipmem 0.5.2

macOS clipboard memory backed by SQLite and searchable from agent runtimes
Documentation
mod archive;
mod builders;
mod clipboard;
mod kinds;
mod text_projection;

pub(crate) use archive::SearchHitParts;
pub use archive::{
    CaptureEvent, CaptureStoreResult, DoctorReport, SearchHit, SnapshotDetails, TimelineEvent,
};
pub use builders::{build_item, build_representation, build_snapshot};
pub(crate) use builders::{
    decode_text_bytes_lossy, decode_text_bytes_strict, dedupe_text_fragments, hash_bytes,
    html_to_text_lossy, is_searchable_text_fragment, normalize_whitespace, rtf_to_text_lossy,
    truncate_chars,
};
pub use clipboard::{CaptureContext, ClipboardItem, ClipboardRepresentation, ClipboardSnapshot};
pub use kinds::{ClipboardKind, ParseDomainValueError, SnapshotKind};
pub use text_projection::{FlattenedTextProjection, TextFragment};