p2panda-rs 0.7.0

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Implementation of `storage_provider` traits for an in memory store.
//!
//! - `MemoryStore` implementation of all storage provider traits
//! - helpers for populating a store with test data
pub mod helpers;
mod provider;
mod stores;
mod types;

pub use provider::MemoryStore;
pub use types::{PublishedOperation, StorageEntry};