xet-runtime 1.5.3

Async runtime, configuration, logging, and utility infrastructure for the Hugging Face Xet client tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod config;
mod constants;
#[cfg(not(target_family = "wasm"))]
mod init;

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

pub use config::{LogDirConfig, LoggingConfig, LoggingMode};
#[cfg(not(target_family = "wasm"))]
pub use init::{init, wait_for_log_directory_cleanup};
#[cfg(not(target_family = "wasm"))]
pub use system_monitor::SystemMonitor;