xet-runtime 1.5.2

Async runtime, configuration, logging, and utility infrastructure for the Hugging Face Xet client tools.
Documentation
pub mod common;
pub mod exports;

pub mod runtime;

pub use common::XetCommon;
pub use runtime::{RuntimeMode, XetRuntime, check_sigint_shutdown};

pub mod sync_primatives;
pub use sync_primatives::{SyncJoinHandle, spawn_os_thread};

pub mod par_utils;

pub mod file_handle_limits;

#[cfg(not(target_family = "wasm"))]
mod cache_dir;

#[cfg(not(target_family = "wasm"))]
pub use cache_dir::xet_cache_root;

mod config;

pub use config::xet_config;