Skip to content

Commit

Permalink
NOT READY : refactoring willbe (#1379)
Browse files Browse the repository at this point in the history
evolve macro_tools and willbe
  • Loading branch information
wtools-bot authored Jun 29, 2024
1 parent d5c2499 commit fa81d4b
Show file tree
Hide file tree
Showing 418 changed files with 10,147 additions and 7,195 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
"module/core/*",
"module/move/*",
"module/test/*",
"step",
]
exclude = [
"-*",
Expand Down Expand Up @@ -45,6 +46,11 @@ restriction = "warn"
pedantic = "warn"
# Denies undocumented unsafe blocks.
undocumented_unsafe_blocks = "deny"
# xxx : check
# Warns if core could be used instead of std, but didn't
std_instead_of_core = "warn"
# Warns if alloc could be used instead of std, but didn't
std_instead_of_alloc = "warn"
# xxx : document
single_call_fn = "allow"
inline_always = "allow"
Expand Down
38 changes: 0 additions & 38 deletions bash.exe.stackdump

This file was deleted.

2 changes: 2 additions & 0 deletions module/alias/instance_of/src/typing/implements_lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ pub mod orphan
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::prelude::*;
Expand Down
2 changes: 2 additions & 0 deletions module/alias/instance_of/src/typing/inspect_type_lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ pub mod orphan
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::prelude::*;
Expand Down
2 changes: 2 additions & 0 deletions module/alias/instance_of/src/typing/is_slice_lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ pub mod orphan
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::prelude::*;
Expand Down
2 changes: 2 additions & 0 deletions module/alias/instance_of/src/typing/typing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ pub mod orphan
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::prelude::*;
Expand Down
16 changes: 8 additions & 8 deletions module/alias/werror/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ all-features = false
[features]
default = [
"enabled",
"error_for_lib",
"error_for_app"
"error_typed",
"error_untyped"
]
full = [
"enabled",
"error_for_lib",
"error_for_app"
"error_typed",
"error_untyped"
]
no_std = [ "error_tools/no_std" ]
use_alloc = [ "error_tools/use_alloc" ]
enabled = [ "error_tools/enabled" ]

error_for_lib = [
"error_tools/error_for_lib"
error_typed = [
"error_tools/error_typed"
]
error_for_app = [
"error_tools/error_for_app"
error_untyped = [
"error_tools/error_untyped"
]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion module/alias/winterval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ workspace = true
features = [ "full" ]
all-features = false

# exclude = [ "/tests", "/examples", "-*" ]


[features]
default = [ "enabled" ]
Expand Down
2 changes: 1 addition & 1 deletion module/alias/wtest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
# exclude = [ "/tests", "/examples", "-*" ]

include = [
"/rust/impl/test",
"/Cargo.toml",
Expand Down
2 changes: 2 additions & 0 deletions module/alias/wtest_basic/src/_blank/standard_lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ pub mod orphan
}

/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
}

// #[ doc( inline ) ]
Expand Down
80 changes: 0 additions & 80 deletions module/blank/willbe_old/Cargo.toml

This file was deleted.

22 changes: 0 additions & 22 deletions module/blank/willbe_old/License

This file was deleted.

35 changes: 0 additions & 35 deletions module/blank/willbe_old/Readme.md

This file was deleted.

Loading

0 comments on commit fa81d4b

Please sign in to comment.