xet-client 1.5.2

Client library for communicating with Hugging Face Xet storage servers. Use through the hf-xet crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HTTPS client for communicating with Hugging Face Xet storage servers.
//!
//! Includes the [`cas_client`] for uploading/downloading Xorb objects and
//! metadata shards, the [`hub_client`] for Hugging Face Hub API
//! interactions, and a local [`chunk_cache`] with LRU eviction.

#![cfg_attr(feature = "strict", deny(warnings))]

pub mod error;
pub use error::ClientError;

pub mod cas_client;
pub mod cas_types;
pub mod chunk_cache;
pub mod common;
pub mod hub_client;