1#![ cfg_attr( not( feature = "use_std" ), no_std ) ]
2#![ doc( html_logo_url = "https://raw.githubusercontent.com/Wandalen/wTools/master/asset/img/logo_v3_trans_square.png" ) ]
3#![ doc( html_favicon_url = "https://raw.githubusercontent.com/Wandalen/wTools/alpha/asset/img/logo_v3_trans_square_icon_small_v2.ico" ) ]
4#![ doc( html_root_url = "https://docs.rs/data_type/latest/wmath/" ) ]
5#![ warn( rust_2018_idioms ) ]
6#![ warn( missing_debug_implementations ) ]
7#![ warn( missing_docs ) ]
8
9#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "Readme.md" ) ) ]
19
20use meta_tools::mod_interface;
21
22pub mod dependency
24{
25 pub use ::math_adapter;
26}
27
28pub use ::math_adapter as adapter;
29
30crate::mod_interface!
31{
32
33 layer basic;
35
36 use ::math_adapter;
37
38}