Skip to main content

atuin_common/sync/
mod.rs

1//! Synchronization primitives.
2
3mod eager_future_cell;
4mod sharded_mutex;
5
6pub use eager_future_cell::{EagerFuture, EagerFutureCell, MutEagerFutureCell, ResultCell};
7pub use sharded_mutex::{AsyncShardedMutex, ShardedMutex};