p2panda-rs 0.5.0

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

//! Implementations of all `StorageProvider` traits.
//!
//! Used in the mock node and for testing.
pub mod domain;
mod provider;
mod stores;
pub mod test_db;
mod types;
pub mod validation;

pub use provider::MemoryStore;
pub use types::{EntryArgsResponse, PublishEntryResponse, StorageEntry, StorageLog};