Skip to main content

decant_memflow/
lib.rs

1//! memflow-backed Decant memory backend, enabled with the `memflow` feature.
2
3#![allow(dead_code)]
4
5#[cfg(feature = "memflow")]
6mod backend;
7#[cfg(feature = "memflow")]
8pub use backend::MemflowBackend;