bable 0.1.0

Badger's high performance sst table implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::{table::Block, RefCounter};
use vpb::{kvstructs::bytes::Bytes, TableIndex};

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