1//! pulse-state: state layer
2//! Provides `InMemoryState` and an optional `RocksDbState` backend behind the `rocksdb` feature.
34pub mod mem;
5#[cfg(feature = "rocksdb")]
6pub mod rocks;
78pub use mem::InMemoryState;
9#[cfg(feature = "rocksdb")]
10pub use rocks::RocksDbState;