iota_utils/lib.rs
1#![deny(unused_extern_crates)]
2#![warn(
3 missing_debug_implementations,
4 missing_docs,
5 rust_2018_idioms,
6 unreachable_pub
7)]
8
9//! Utilities helpers for Iota
10
11mod seed_random_generator;
12mod stopwatch;
13
14/// Provides an adder that sums to slices of trits
15pub mod trit_adder;
16
17pub use self::seed_random_generator::generate_new_seed;
18pub use self::stopwatch::StopWatch;