radix_substate_store_impls/
lib.rs1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(not(any(feature = "std", feature = "alloc")))]
4compile_error!("Either feature `std` or `alloc` must be enabled for this crate.");
5#[cfg(all(feature = "std", feature = "alloc"))]
6compile_error!("Feature `std` and `alloc` can't be enabled at the same time.");
7
8pub mod memory_db;
9#[cfg(feature = "rocksdb")]
10pub mod rocks_db;
11#[cfg(feature = "rocksdb")]
12pub mod rocks_db_with_merkle_tree;
13pub mod state_tree;
14pub mod substate_database_overlay;
15
16pub mod state_tree_support;