chore(reth-db): no_std support (#9597)

This commit is contained in:
nk_ysg
2024-07-18 17:52:02 +08:00
committed by GitHub
parent 54d3734c2f
commit 6aabf13bd2
4 changed files with 19 additions and 7 deletions

View File

@ -17,9 +17,11 @@
mod implementation;
pub mod lockfile;
#[cfg(feature = "mdbx")]
mod metrics;
pub mod static_file;
pub mod tables;
#[cfg(feature = "mdbx")]
mod utils;
pub mod version;
@ -28,6 +30,7 @@ pub mod mdbx;
pub use reth_storage_errors::db::{DatabaseError, DatabaseWriteOperation};
pub use tables::*;
#[cfg(feature = "mdbx")]
pub use utils::is_database_empty;
#[cfg(feature = "mdbx")]