spow 0.6.0

Proof of Work for the Server and Client + WASM
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright 2025 Sebastian Dobe <sebastiandobe@mailbox.org>

#![doc = include_str!("../README.md")]

#[cfg(feature = "server")]
pub mod pow;
#[cfg(feature = "client")]
pub mod wasm;

pub type BitValue<'a> = (&'a [u8], usize);