Skip to content

Commit ac926f1

Browse files
committed
cleaning
1 parent 898c16a commit ac926f1

File tree

396 files changed

+1492
-1747
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

396 files changed

+1492
-1747
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ undocumented_unsafe_blocks = "deny"
7171
std_instead_of_core = "warn"
7272
# Denies including files in documentation unconditionally.
7373
doc_include_without_cfg = "warn"
74-
# Denies missing inline in public items.
75-
missing_inline_in_public_items = "warn"
74+
# Allows missing inline in public items (too verbose).
75+
missing_inline_in_public_items = "allow"
7676

7777
# exceptions
7878

module/alias/file_tools/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
)]
66
#![doc(html_root_url = "https://docs.rs/file_tools/latest/file_tools/")]
77
#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
8+
#![ cfg_attr( not( doc ), doc = "File manipulation utilities" ) ]
89

910
/// Function description.
1011
#[cfg(feature = "enabled")]

module/alias/instance_of/src/typing/implements_lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ mod private
3131
/// dbg!( implements!( Box::new( 13_i32 ) => Copy ) );
3232
/// // < implements!( 13_i32 => Copy ) : false
3333
/// ```
34-
3534
#[ macro_export ]
3635
macro_rules! implements
3736
{
@@ -53,7 +52,6 @@ mod private
5352
/// dbg!( instance_of!( Box::new( 13_i32 ) => Copy ) );
5453
/// // < instance_of!( 13_i32 => Copy ) : false
5554
/// ```
56-
5755
#[ macro_export ]
5856
macro_rules! instance_of
5957
{

module/alias/instance_of/src/typing/inspect_type_lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ mod nightly
1919
///
2020
/// Macro to inspect type of a variable and its size exporting it as a string.
2121
///
22-
2322
#[ macro_export ]
2423
// #[ cfg_attr( feature = "nightly1", macro_export ) ]
2524
macro_rules! inspect_to_str_type_of
@@ -44,7 +43,6 @@ mod nightly
4443
///
4544
/// Macro to inspect type of a variable and its size printing into stdout and exporting it as a string.
4645
///
47-
4846
#[ macro_export ]
4947
// #[ cfg_attr( feature = "nightly1", macro_export ) ]
5048
macro_rules! inspect_type_of

module/alias/instance_of/src/typing/is_slice_lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ mod private
3232
/// // < is_slice!(& [1, 2, 3] [..]) = true
3333
/// }
3434
/// ```
35-
3635
#[ macro_export ]
3736
macro_rules! is_slice
3837
{

module/alias/instance_of/src/typing/typing_tools_lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
pub mod typing;
1717

1818
/// Namespace with dependencies.
19-
2019
#[ cfg( feature = "enabled" ) ]
2120
pub mod dependency
2221
{

module/alias/proper_tools/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
)]
66
#![doc(html_root_url = "https://docs.rs/proper_tools/latest/proper_tools/")]
77
#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
8+
#![ cfg_attr( not( doc ), doc = "Proper tools collection" ) ]
89

910
/// Function description.
1011
#[cfg(feature = "enabled")]

module/alias/unilang_instruction_parser/tests/tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! Test reuse for unilang_instruction_parser alias crate.
1+
//! Test reuse for `unilang_instruction_parser` alias crate.
22
//!
3-
//! This alias crate inherits all tests from the core unilang_parser implementation.
4-
//! Following the wTools test reuse pattern used by meta_tools and test_tools.
3+
//! This alias crate inherits all tests from the core `unilang_parser` implementation.
4+
//! Following the wTools test reuse pattern used by `meta_tools` and `test_tools`.
55
66
#[allow(unused_imports)]
77
use unilang_instruction_parser as the_module;

module/alias/willbe2/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
)]
66
#![doc(html_root_url = "https://docs.rs/{{template_blank}}/latest/{{template_blank}}/")]
77
#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
8+
#![ cfg_attr( not( doc ), doc = "Build tool binary" ) ]
89

910
// #[ doc( inline ) ]
1011
// #[ allow( unused_imports ) ]

module/alias/willbe2/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
)]
55
#![doc(html_root_url = "https://docs.rs/{{template_blank}}/latest/{{template_blank}}/")]
66
#![ cfg_attr( doc, doc = include_str!( concat!( env!( "CARGO_MANIFEST_DIR" ), "/", "readme.md" ) ) ) ]
7+
#![ cfg_attr( not( doc ), doc = "Build tool binary" ) ]
78

89
#[allow(unused_imports)]
910
use ::willbe2::*;

0 commit comments

Comments
 (0)