Skip to content

Commit

Permalink
Merge pull request #1282 from SupperZum/wTools_fix
Browse files Browse the repository at this point in the history
READY : Wtools fix
  • Loading branch information
Wandalen authored Apr 8, 2024
2 parents 37417c3 + c0db85c commit c76beef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions module/core/impls_index/tests/inc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ mod impls3_test;
mod index_test;
mod tests_index_test;

use crate::only_for_terminal_module;

only_for_terminal_module!
{

Expand Down
2 changes: 1 addition & 1 deletion module/core/wtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ error_full = [
]
# error_use_std = [ "error", "error_tools/use_std" ]
error_no_std = [ "error", "error_tools/no_std" ]
error_use_alloc = [ "error", "error_tools/use_alloc" ]
#error_use_alloc = [ "error", "error_tools/use_alloc" ]

error_for_lib = [ "error", "error_tools/error_for_lib" ]
error_for_app = [ "error", "error_tools/error_for_app" ]
Expand Down
4 changes: 2 additions & 2 deletions module/core/wtools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pub mod exposed
#[ cfg( feature = "typing" ) ]
pub use super::typing::exposed::*;
#[ cfg( feature = "diagnostics" ) ]
pub use super::diag::exposed::*;
pub use super::diagnostics::diag::exposed::*;
#[ cfg( any( feature = "dt", feature = "data_type" ) ) ]
pub use super::dt::exposed::*;
#[ cfg( feature = "time" ) ]
Expand Down Expand Up @@ -176,7 +176,7 @@ pub mod prelude
#[ cfg( feature = "diagnostics" ) ]
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use super::diag::prelude::*;
pub use super::diagnostics::diag::prelude::*;
#[ cfg( any( feature = "dt", feature = "data_type" ) ) ]
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
Expand Down
4 changes: 2 additions & 2 deletions module/core/wtools/tests/wtools_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use test_tools::exposed::*;
// }

#[ cfg( feature = "iter_tools" ) ]
#[ path = "../../../core/iter_tools/tests/iter_tools_tests.rs" ]
#[ path = "../../../core/iter_tools/tests/tests.rs" ]
mod iter_tools;

#[ cfg( feature = "meta_tools" ) ]
Expand Down Expand Up @@ -41,7 +41,7 @@ mod strs_tools;
mod error_tools;

#[ cfg( feature = "derive_tools" ) ]
#[ path = "../../../core/derive_tools/tests/derive_tests.rs" ]
#[ path = "../../../core/derive_tools/tests/tests.rs" ]
mod derive_tools;

#[ cfg( feature = "data_type" ) ]
Expand Down

0 comments on commit c76beef

Please sign in to comment.