nula-core 0.2.2

Nostr protocol core: events, filters, keys, messages, NIP primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility helpers shared by every other `nula-core` module.
//!
//! The submodules are deliberately minimal and stateless. They form the very
//! bottom of the protocol stack: every higher level depends on them, but they
//! depend on nothing internal to `nula-core`.

pub mod hex;
pub mod json;
pub mod rng;

pub use self::hex::HexError;
pub use self::json::JsonUtil;
pub use self::rng::RngError;