aommap 0.3.1

Append only lock-free memory map implementation
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "std")]
mod rust;
#[cfg(feature = "std")]
pub use rust::*;

#[cfg(not(feature = "std"))]
mod wasm;
#[cfg(not(feature = "std"))]
pub use wasm::*;