ort_parallel/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "async")]
4mod async_pool;
5#[cfg(feature = "sync")]
6mod semaphore;
7#[cfg(feature = "sync")]
8mod sync_pool;
9
10#[cfg(feature = "async")]
11pub use async_pool::AsyncSessionPool;
12
13#[cfg(feature = "sync")]
14pub use sync_pool::SessionPool;