libvctrl_core 0.1.0

Reference implementations of the libvctrl contracts (in-memory store, SHA-512 hasher, binary codec)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! In‑memory reference implementations of the storage traits.
//!
//! These stores are not thread‑safe and not persistent.
//! They are intended for testing, prototyping, and as a reference
//! for building real backends.

pub mod memory;
pub mod ref_store;

pub use memory::MemoryStore;
pub use ref_store::MemoryRefStore;