xet-runtime 1.5.2

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
mod config;
mod constants;
mod init;

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

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