Skip to content

Commit

Permalink
some_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SupperZum committed Apr 4, 2024
1 parent 99a5427 commit 3cdf5c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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 3cdf5c3

Please sign in to comment.