automata_tools/automata_tools_lib.rs
1#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
2#![ warn( rust_2018_idioms ) ]
3#![ warn( missing_debug_implementations ) ]
4#![ warn( missing_docs ) ]
5
6// #![ feature( type_name_of_val ) ]
7// #![ feature( trace_macros ) ]
8
9//!
10//! Implementation of automata.
11//!
12
13#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/Readme.md" ) ) ]
14
15#[ doc( inline ) ]
16pub use graphs_tools::*;