shodh-redb 0.3.1

Multi-modal embedded database - vectors, blobs, TTL, merge operators, and causal tracking built on ACID B-trees
Documentation
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Modified for no_std: use spin::Mutex always, core::sync::atomic always.

pub(crate) mod atomic {
    pub use core::sync::atomic::*;
    // Re-export AtomicU64 from portable-atomic for targets that lack native 64-bit atomics.
    pub use portable_atomic::AtomicU64;
}

pub(crate) use alloc::sync::Arc;

// Use spin::Mutex unconditionally -- no poison semantics needed.
// .lock() returns the guard directly (no Result).
// .try_lock() returns Option<MutexGuard> (no TryLockError).
pub(crate) use spin::Mutex;
pub(crate) use spin::MutexGuard;

#[cfg(all(feature = "shuttle", test))]
pub(crate) use shuttle::thread;

#[cfg(all(feature = "std", not(all(feature = "shuttle", test))))]
#[allow(unused_imports)]
pub(crate) use std::thread;

#[cfg(all(feature = "std", test, not(all(feature = "shuttle", test))))]
#[allow(unused_imports)]
pub(crate) use std::sync::Barrier;