wcensor/
censor_lib.rs

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/wcensor/latest/wcensor/" ) ]
5#![ warn( rust_2018_idioms ) ]
6#![ warn( missing_debug_implementations ) ]
7#![ warn( missing_docs ) ]
8
9//!
10//! Library of utility to operate files from a command line.
11//!
12
13#![ doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/Readme.md" ) ) ]
14
15// #![feature( pattern )]
16
17// use wtools::former::Former;
18
19///
20/// Result of parsing.
21///
22
23pub mod instruction;
24
25///
26/// Properties parsing.
27///
28
29pub mod props;
30// pub mod string;