p2panda-rs 0.4.0

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

//! Mock p2panda node and client for demo and testing purposes.
mod client;
pub mod constants;
pub mod logs;
mod node;
pub mod utils;

pub use client::Client;
pub use node::{send_to_node, Node};