nimiq-utils 0.2.0

Various utilities (e.g., CRC, Merkle proofs, timers) for Nimiq's Rust implementation
Documentation
#[cfg(feature = "log")]
#[macro_use]
extern crate log;

#[cfg(feature = "crc")]
pub mod crc;
#[cfg(feature = "merkle")]
pub mod merkle;
#[cfg(feature = "locking")]
pub mod locking;
#[cfg(feature = "bit-vec")]
pub mod bit_vec;
#[cfg(feature = "observer")]
pub mod observer;
#[cfg(feature = "timers")]
pub mod timers;
#[cfg(feature = "unique-ptr")]
pub mod unique_ptr;
#[cfg(feature = "iterators")]
pub mod iterators;
#[cfg(feature = "mutable-once")]
pub mod mutable_once;
#[cfg(feature = "time")]
pub mod time;
#[cfg(feature = "throttled-queue")]
pub mod throttled_queue;
#[cfg(feature = "rate-limit")]
pub mod rate_limit;
#[cfg(feature = "unique-id")]
pub mod unique_id;