template_blank/lib.rs
1#![ warn( rust_2018_idioms ) ]
2#![ warn( missing_debug_implementations ) ]
3#![ warn( missing_docs ) ]
4
5// #![ feature( type_name_of_val ) ]
6// #![ feature( trace_macros ) ]
7
8//!
9//! ___.
10//!
11
12#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/Readme.md" ) ) ]
13
14/// Namespace with dependencies.
15pub mod dependency
16{
17}
18
19/// Own namespace of the module.
20pub mod protected
21{
22 // use super::internal as i;
23 pub use super::orphan::*;
24}
25
26pub use protected::*;
27
28/// Parented namespace of the module.
29pub mod orphan
30{
31 // use super::internal as i;
32 pub use super::exposed::*;
33}
34
35/// Exposed namespace of the module.
36pub mod exposed
37{
38}
39
40pub use exposed::*;
41
42/// Prelude to use: `use wtools::prelude::*`.
43pub mod prelude
44{
45}