Skip to main content

xet_client/
lib.rs

1//! HTTPS client for communicating with Hugging Face Xet storage servers.
2//!
3//! Includes the [`cas_client`] for uploading/downloading Xorb objects and
4//! metadata shards, the [`hub_client`] for Hugging Face Hub API
5//! interactions, and a local [`chunk_cache`] with LRU eviction.
6
7#![cfg_attr(feature = "strict", deny(warnings))]
8
9pub mod error;
10pub use error::ClientError;
11
12pub mod cas_client;
13pub mod cas_types;
14pub mod chunk_cache;
15pub mod common;
16pub mod hub_client;