Skip to main content

webfetch_core/
lib.rs

1//! Shared primitives for the webfetch/websearch tools: text compression and
2//! token budgeting ([`compress`]) and reference-style URL preservation
3//! ([`refs`]). Both leaf crates re-export these so their internal modules can
4//! keep using `crate::compress` / `crate::refs`.
5
6pub mod compress;
7pub mod refs;