grovedb 3.1.0

Fully featured database using balanced hierarchical authenticated data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Operations for the manipulation of GroveDB state

#[cfg(feature = "minimal")]
pub(crate) mod auxiliary;
#[cfg(feature = "minimal")]
pub mod delete;
#[cfg(feature = "minimal")]
pub(crate) mod get;
#[cfg(feature = "minimal")]
pub mod insert;
#[cfg(feature = "minimal")]
pub(crate) mod is_empty_tree;

#[cfg(any(feature = "minimal", feature = "verify"))]
pub mod proof;

#[cfg(feature = "minimal")]
pub use get::{QueryItemOrSumReturnType, MAX_REFERENCE_HOPS};