p2panda-rs 0.7.0

All the things a panda needs
Documentation
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Methods exported for WebAssembly targets.
//!
//! Wrappers for these methods are available in [p2panda-js], which allows idiomatic usage of
//! `p2panda-rs` in a JavaScript/TypeScript environment.
//!
//! [p2panda-js]: https://github.com/p2panda/p2panda/tree/main/p2panda-js
mod entry;
pub mod error;
mod hash;
mod key_pair;
mod operation;
mod serde;
#[cfg(test)]
mod tests;

pub use entry::{decode_entry, sign_and_encode_entry};
pub use hash::generate_hash;
pub use key_pair::{verify_signature, KeyPair};
pub use operation::{
    decode_operation, encode_operation, OperationFields, PlainFields, PlainOperation,
};