kuatia-storage 0.2.0

Storage abstraction and conformance suite for the Kuatia ledger.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Storage abstraction for the ledger.
//!
//! Provides the [`Store`](store::Store) trait (composed of seven sub-traits),
//! an in-memory implementation, and a conformance test suite macro.

pub mod error;
pub mod events;
pub mod mem_store;
pub mod store;
pub mod store_tests;