xet_runtime/core/mod.rs
1pub mod common;
2pub mod exports;
3
4pub mod context;
5pub mod runtime;
6
7pub use common::XetCommon;
8pub use context::XetContext;
9pub use runtime::{RuntimeMode, XetRuntime};
10
11pub mod sync_primatives;
12pub use sync_primatives::{SyncJoinHandle, spawn_os_thread};
13
14pub mod par_utils;
15
16pub mod file_handle_limits;
17
18#[cfg(not(target_family = "wasm"))]
19mod cache_dir;
20
21#[cfg(not(target_family = "wasm"))]
22pub use cache_dir::xet_cache_root;