artimonist 1.8.0

A tool for generating mnemonics and wallets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod animate;
mod complex;
#[allow(clippy::module_inception)]
mod diagram;
mod generic;
mod simple;

pub use animate::AnimateDiagram;
pub use complex::ComplexDiagram;
pub use diagram::Diagram;
pub use generic::GenericDiagram;
pub use simple::SimpleDiagram;

pub mod matrix;

type Result<T = ()> = std::result::Result<T, crate::Error>;