webtools-core 0.1.17

Shared primitives: compression, token budgeting, and reference-style URLs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared primitives for the webfetch/websearch tools: text compression and
//! token budgeting ([`compress`]), reference-style URL preservation and the
//! reference-aware token budget ([`refs`]), HTTP fetch primitives — user agent,
//! body cap, retry classification ([`http`]) — and shared HTTP-client TLS trust
//! configuration ([`tls`]). Both leaf crates re-export these so their internal
//! modules can keep using `crate::compress` / `crate::refs` / `crate::tls`.

pub mod charset;
pub mod compress;
pub mod http;
pub mod refs;
pub mod tls;