From 1d36a2f28a44f56b4f6f07957fd49516cc36598b Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 11:01:57 +0300 Subject: [PATCH 01/14] error_tools : fix --- module/core/error_tools/tests/inc/assert_test.rs | 4 ++-- module/core/error_tools/tests/inc/basic_test.rs | 4 ++-- module/core/error_tools/tests/inc/mod.rs | 5 +++-- module/core/error_tools/tests/inc/namespace_test.rs | 2 +- module/core/error_tools/tests/inc/untyped_test.rs | 4 ++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/module/core/error_tools/tests/inc/assert_test.rs b/module/core/error_tools/tests/inc/assert_test.rs index d9fa4f1aa1..347faccc8d 100644 --- a/module/core/error_tools/tests/inc/assert_test.rs +++ b/module/core/error_tools/tests/inc/assert_test.rs @@ -3,7 +3,7 @@ use super::*; // -tests_impls! +test_tools::tests_impls! { fn debug_assert_id_pass() { @@ -78,7 +78,7 @@ tests_impls! // -tests_index! +test_tools::tests_index! { debug_assert_id_pass, debug_assert_id_fail, diff --git a/module/core/error_tools/tests/inc/basic_test.rs b/module/core/error_tools/tests/inc/basic_test.rs index 32cb4c4bba..52954ef9c0 100644 --- a/module/core/error_tools/tests/inc/basic_test.rs +++ b/module/core/error_tools/tests/inc/basic_test.rs @@ -5,7 +5,7 @@ use super::*; // #[ cfg( not( feature = "no_std" ) ) ] -tests_impls! +test_tools::tests_impls! { // fn basic() // { @@ -123,7 +123,7 @@ tests_impls! // #[ cfg( not( feature = "no_std" ) ) ] -tests_index! +test_tools::tests_index! { // basic, // use1, diff --git a/module/core/error_tools/tests/inc/mod.rs b/module/core/error_tools/tests/inc/mod.rs index 5e78c0b4c1..4d485da725 100644 --- a/module/core/error_tools/tests/inc/mod.rs +++ b/module/core/error_tools/tests/inc/mod.rs @@ -1,7 +1,7 @@ #[ allow( unused_imports ) ] use super::*; - -use test_tools::exposed::*; +// use test_tools::exposed::*; +use test_tools::{ tests_impls, tests_index, a_id }; mod basic_test; mod namespace_test; @@ -10,3 +10,4 @@ mod assert_test; #[ cfg( not( feature = "no_std" ) ) ] mod err_with_test; mod untyped_test; + diff --git a/module/core/error_tools/tests/inc/namespace_test.rs b/module/core/error_tools/tests/inc/namespace_test.rs index 92e96b0610..5c267b8405 100644 --- a/module/core/error_tools/tests/inc/namespace_test.rs +++ b/module/core/error_tools/tests/inc/namespace_test.rs @@ -9,4 +9,4 @@ fn exposed_main_namespace() use the_module::exposed::*; error::debug_assert_id!( 1, 1 ); -} \ No newline at end of file +} diff --git a/module/core/error_tools/tests/inc/untyped_test.rs b/module/core/error_tools/tests/inc/untyped_test.rs index 6e92b663e7..10cb39b0fd 100644 --- a/module/core/error_tools/tests/inc/untyped_test.rs +++ b/module/core/error_tools/tests/inc/untyped_test.rs @@ -4,7 +4,7 @@ use super::*; // #[ cfg( feature = "error_untyped" ) ] -tests_impls! +test_tools::tests_impls! { fn basic() { @@ -20,7 +20,7 @@ tests_impls! // #[ cfg( feature = "error_untyped" ) ] -tests_index! +test_tools::tests_index! { basic, } From de069cf22e675302f0cb5bf4154a887d5709f8a6 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 17:26:49 +0300 Subject: [PATCH 02/14] fixing --- module/core/impls_index/src/impls_index/impls.rs | 2 +- module/core/impls_index/tests/inc/impls1_test.rs | 13 ++++++------- module/core/impls_index/tests/inc/impls2_test.rs | 4 ++-- module/core/impls_index/tests/inc/mod.rs | 4 ++-- .../inc/dynamic/namespace_does_not_exists.stderr | 14 ++++++-------- 5 files changed, 17 insertions(+), 20 deletions(-) diff --git a/module/core/impls_index/src/impls_index/impls.rs b/module/core/impls_index/src/impls_index/impls.rs index 1bad7f96e4..eaed380e3d 100644 --- a/module/core/impls_index/src/impls_index/impls.rs +++ b/module/core/impls_index/src/impls_index/impls.rs @@ -383,4 +383,4 @@ pub mod exposed pub mod prelude { use super::*; -} +} \ No newline at end of file diff --git a/module/core/impls_index/tests/inc/impls1_test.rs b/module/core/impls_index/tests/inc/impls1_test.rs index ed8128e47c..6e3db6b665 100644 --- a/module/core/impls_index/tests/inc/impls1_test.rs +++ b/module/core/impls_index/tests/inc/impls1_test.rs @@ -94,12 +94,11 @@ fn impls_basic() { fn f1() { - // xxx : qqq : uncomment and fix - // macro_rules! macro1 - // { - // ( $( $Arg : tt )* ) => { { $( $Arg )* } }; - // } - // macro1!(); + macro_rules! macro1 + { + () => { }; + } + macro1!(); } } @@ -116,4 +115,4 @@ fn impls_basic() // tests_index! // { // impls_basic, -// } +// } \ No newline at end of file diff --git a/module/core/impls_index/tests/inc/impls2_test.rs b/module/core/impls_index/tests/inc/impls2_test.rs index 20b83f0731..359be53839 100644 --- a/module/core/impls_index/tests/inc/impls2_test.rs +++ b/module/core/impls_index/tests/inc/impls2_test.rs @@ -96,7 +96,7 @@ fn impls_basic() { macro_rules! macro1 { - ( $( $Arg : tt )* ) => { }; + () => { }; } macro1!(); } @@ -116,4 +116,4 @@ fn impls_basic() // { // // fns, // impls_basic, -// } +// } \ No newline at end of file diff --git a/module/core/impls_index/tests/inc/mod.rs b/module/core/impls_index/tests/inc/mod.rs index 624fc01ab8..8bb5422529 100644 --- a/module/core/impls_index/tests/inc/mod.rs +++ b/module/core/impls_index/tests/inc/mod.rs @@ -30,7 +30,7 @@ only_for_terminal_module! { println!( "current_dir : {:?}", std::env::current_dir().unwrap() ); - let t = test_tools::compiletime::TestCases::new(); + let _t = test_tools::compiletime::TestCases::new(); // xxx : enable and use process::run // t.compile_fail( "tests/inc/compiletime/former_bad_attr.rs" ); @@ -41,4 +41,4 @@ only_for_terminal_module! } -} +} \ No newline at end of file diff --git a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr b/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr index 167994b68d..d8c87b3267 100644 --- a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr +++ b/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr @@ -1,8 +1,10 @@ -error[E0433]: failed to resolve: use of undeclared crate or module `wtest_basic` +error[E0433]: failed to resolve: use of unresolved module or unlinked crate `wtest_basic` --> tests/inc/dynamic/namespace_does_not_exists.rs:1:5 | 1 | use wtest_basic::exposed::exposed::*; - | ^^^^^^^^^^^ use of undeclared crate or module `wtest_basic` + | ^^^^^^^^^^^ use of unresolved module or unlinked crate `wtest_basic` + | + = help: if you wanted to use a crate named `wtest_basic`, use `cargo add wtest_basic` to add it to your `Cargo.toml` error: cannot find macro `tests_index` in this scope --> tests/inc/dynamic/namespace_does_not_exists.rs:15:1 @@ -10,9 +12,7 @@ error: cannot find macro `tests_index` in this scope 15 | tests_index! | ^^^^^^^^^^^ | -help: consider importing one of these macros - | -1 + use meta_tools::tests_index; +help: consider importing this macro | 1 + use test_tools::tests_index; | @@ -23,9 +23,7 @@ error: cannot find macro `tests_impls` in this scope 5 | tests_impls! | ^^^^^^^^^^^ | -help: consider importing one of these macros - | -1 + use meta_tools::tests_impls; +help: consider importing this macro | 1 + use test_tools::tests_impls; | From 9a42d08d5d235a49a33ef2f7e4a30f45ba03fc44 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 17:27:21 +0300 Subject: [PATCH 03/14] inspect_type-v0.16.0 --- Cargo.toml | 2 +- module/core/inspect_type/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 337982bc77..45e8991fae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -339,7 +339,7 @@ path = "module/alias/instance_of" default-features = false [workspace.dependencies.inspect_type] -version = "~0.15.0" +version = "~0.16.0" path = "module/core/inspect_type" default-features = false diff --git a/module/core/inspect_type/Cargo.toml b/module/core/inspect_type/Cargo.toml index b957a14ff9..f1b141e08b 100644 --- a/module/core/inspect_type/Cargo.toml +++ b/module/core/inspect_type/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inspect_type" -version = "0.15.0" +version = "0.16.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From e0dfd390b099aec2d24e2a7e603dd3dbc525dda5 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 17:31:15 +0300 Subject: [PATCH 04/14] . --- Cargo.toml | 2 +- module/core/test_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 45e8991fae..983d830183 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -421,7 +421,7 @@ version = "~0.4.0" path = "module/alias/wtest" [workspace.dependencies.test_tools] -version = "~0.14.0" +version = "~0.15.0" path = "module/core/test_tools" features = [ "full" ] diff --git a/module/core/test_tools/Cargo.toml b/module/core/test_tools/Cargo.toml index d8d8acc784..2222e519ac 100644 --- a/module/core/test_tools/Cargo.toml +++ b/module/core/test_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_tools" -version = "0.14.0" +version = "0.15.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From 061f405852a59976f2ff2bd4537a947d7ac2088c Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:15:58 +0300 Subject: [PATCH 05/14] test_tools : fixing --- .../src/{impls_index => implsindex}/func.rs | 0 .../src/{impls_index => implsindex}/impls.rs | 0 .../src/{impls_index => implsindex}/mod.rs | 3 +- module/core/impls_index/src/lib.rs | 9 +++--- .../core/impls_index/tests/inc/impls3_test.rs | 2 +- module/core/test_tools/Cargo.toml | 8 ++--- module/core/test_tools/src/lib.rs | 5 ++++ module/core/test_tools/src/standalone.rs | 4 +-- .../inc/dynamic/namespace_does_not_exists.rs | 23 --------------- .../dynamic/namespace_does_not_exists.stderr | 29 ------------------- .../test_tools/tests/inc/try_build_test.rs | 2 +- 11 files changed, 18 insertions(+), 67 deletions(-) rename module/core/impls_index/src/{impls_index => implsindex}/func.rs (100%) rename module/core/impls_index/src/{impls_index => implsindex}/impls.rs (100%) rename module/core/impls_index/src/{impls_index => implsindex}/mod.rs (95%) delete mode 100644 module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.rs delete mode 100644 module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr diff --git a/module/core/impls_index/src/impls_index/func.rs b/module/core/impls_index/src/implsindex/func.rs similarity index 100% rename from module/core/impls_index/src/impls_index/func.rs rename to module/core/impls_index/src/implsindex/func.rs diff --git a/module/core/impls_index/src/impls_index/impls.rs b/module/core/impls_index/src/implsindex/impls.rs similarity index 100% rename from module/core/impls_index/src/impls_index/impls.rs rename to module/core/impls_index/src/implsindex/impls.rs diff --git a/module/core/impls_index/src/impls_index/mod.rs b/module/core/impls_index/src/implsindex/mod.rs similarity index 95% rename from module/core/impls_index/src/impls_index/mod.rs rename to module/core/impls_index/src/implsindex/mod.rs index 484e43dd3f..712bd6a30d 100644 --- a/module/core/impls_index/src/impls_index/mod.rs +++ b/module/core/impls_index/src/implsindex/mod.rs @@ -49,7 +49,8 @@ pub mod orphan pub mod exposed { use super::*; - pub use super::super::impls_index; + pub use super::super::implsindex; + // pub use crate as impls_index; #[ doc( inline ) ] pub use prelude::*; #[ doc( inline ) ] diff --git a/module/core/impls_index/src/lib.rs b/module/core/impls_index/src/lib.rs index ac0f33af0a..dd694460e9 100644 --- a/module/core/impls_index/src/lib.rs +++ b/module/core/impls_index/src/lib.rs @@ -6,7 +6,7 @@ /// Collection of general purpose meta tools. #[ cfg( feature = "enabled" ) ] -pub mod impls_index; +pub mod implsindex; /// Namespace with dependencies. @@ -30,7 +30,8 @@ pub mod own #[ doc( inline ) ] pub use orphan::*; #[ doc( inline ) ] - pub use super::impls_index::orphan::*; + pub use super::implsindex::orphan::*; + // pub use crate as impls_index; } /// Orphan namespace of the module. @@ -52,7 +53,7 @@ pub mod exposed #[ doc( inline ) ] pub use prelude::*; #[ doc( inline ) ] - pub use super::impls_index::exposed::*; + pub use super::implsindex::exposed::*; } /// Prelude to use essentials: `use my_module::prelude::*`. @@ -62,5 +63,5 @@ pub mod prelude { use super::*; #[ doc( inline ) ] - pub use super::impls_index::prelude::*; + pub use super::implsindex::prelude::*; } diff --git a/module/core/impls_index/tests/inc/impls3_test.rs b/module/core/impls_index/tests/inc/impls3_test.rs index 350a692a1f..e4fee4ef29 100644 --- a/module/core/impls_index/tests/inc/impls3_test.rs +++ b/module/core/impls_index/tests/inc/impls3_test.rs @@ -1,5 +1,5 @@ use super::*; -use the_module::exposed::{ impls3, index, impls_index }; +use the_module::exposed::{ impls3, index, implsindex as impls_index }; // diff --git a/module/core/test_tools/Cargo.toml b/module/core/test_tools/Cargo.toml index 2222e519ac..3a8523ee33 100644 --- a/module/core/test_tools/Cargo.toml +++ b/module/core/test_tools/Cargo.toml @@ -58,7 +58,6 @@ normal_build = [ # "dep:mem_tools", # "dep:typing_tools", # "dep:diagnostics_tools", - # # "dep:process_tools", ] # standalone_build vesion of build is used to avoid cyclic dependency @@ -70,8 +69,6 @@ standalone_build = [ "standalone_mem_tools", "standalone_typing_tools", "standalone_diagnostics_tools", - # "standalone_process_tools", - # "dep:process_tools", ] standalone_error_tools = [ "dep:anyhow", "dep:thiserror", "error_typed", "error_untyped" ] standalone_collection_tools = [ "dep:hashbrown", "collection_constructors", "collection_into_constructors" ] @@ -110,15 +107,14 @@ num-traits = { workspace = true } rand = { workspace = true } # tempdir = { workspace = true } -# ## internal -# +## internal + # error_tools = { workspace = true, features = [ "full" ], optional = true } # collection_tools = { workspace = true, features = [ "full" ], optional = true } # impls_index = { workspace = true, features = [ "full" ], optional = true } # mem_tools = { workspace = true, features = [ "full" ], optional = true } # typing_tools = { workspace = true, features = [ "full" ], optional = true } # diagnostics_tools = { workspace = true, features = [ "full" ], optional = true } -# # process_tools = { workspace = true, features = [ "full" ], optional = true } ## transient diff --git a/module/core/test_tools/src/lib.rs b/module/core/test_tools/src/lib.rs index 1026cf4956..bf3b11bd44 100644 --- a/module/core/test_tools/src/lib.rs +++ b/module/core/test_tools/src/lib.rs @@ -143,6 +143,11 @@ pub use :: diagnostics_tools, }; +#[ cfg( feature = "enabled" ) ] +#[ cfg( not( feature = "doctest" ) ) ] +#[ cfg( all( feature = "standalone_build", not( feature = "normal_build" ) ) ) ] +pub use implsindex as impls_index; + #[ cfg( feature = "enabled" ) ] #[ cfg( not( feature = "doctest" ) ) ] #[ allow( unused_imports ) ] diff --git a/module/core/test_tools/src/standalone.rs b/module/core/test_tools/src/standalone.rs index d2decfc41b..40320ea0a6 100644 --- a/module/core/test_tools/src/standalone.rs +++ b/module/core/test_tools/src/standalone.rs @@ -11,8 +11,8 @@ pub mod collection_tools; pub use collection_tools as collection; /// impl and index macros. -#[ path = "../../../core/impls_index/src/impls_index/mod.rs" ] -pub mod impls_index; +#[ path = "../../../core/impls_index/src/implsindex/mod.rs" ] +pub mod implsindex; /// Memory tools. #[ path = "../../../core/mem_tools/src/mem.rs" ] diff --git a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.rs b/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.rs deleted file mode 100644 index f09853be90..0000000000 --- a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.rs +++ /dev/null @@ -1,23 +0,0 @@ -use wtest_basic::exposed::exposed::*; - -// - -tests_impls! -{ - fn pass() - { - assert_eq!( true, true ); - } -} - -// - -tests_index! -{ - pass, -} - -#[ allow( dead_code ) ] -fn main() -{ -} diff --git a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr b/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr deleted file mode 100644 index d8c87b3267..0000000000 --- a/module/core/test_tools/tests/inc/dynamic/namespace_does_not_exists.stderr +++ /dev/null @@ -1,29 +0,0 @@ -error[E0433]: failed to resolve: use of unresolved module or unlinked crate `wtest_basic` - --> tests/inc/dynamic/namespace_does_not_exists.rs:1:5 - | -1 | use wtest_basic::exposed::exposed::*; - | ^^^^^^^^^^^ use of unresolved module or unlinked crate `wtest_basic` - | - = help: if you wanted to use a crate named `wtest_basic`, use `cargo add wtest_basic` to add it to your `Cargo.toml` - -error: cannot find macro `tests_index` in this scope - --> tests/inc/dynamic/namespace_does_not_exists.rs:15:1 - | -15 | tests_index! - | ^^^^^^^^^^^ - | -help: consider importing this macro - | -1 + use test_tools::tests_index; - | - -error: cannot find macro `tests_impls` in this scope - --> tests/inc/dynamic/namespace_does_not_exists.rs:5:1 - | -5 | tests_impls! - | ^^^^^^^^^^^ - | -help: consider importing this macro - | -1 + use test_tools::tests_impls; - | diff --git a/module/core/test_tools/tests/inc/try_build_test.rs b/module/core/test_tools/tests/inc/try_build_test.rs index b0167dc774..44bd739df5 100644 --- a/module/core/test_tools/tests/inc/try_build_test.rs +++ b/module/core/test_tools/tests/inc/try_build_test.rs @@ -10,5 +10,5 @@ fn trybuild_test() // let t = trybuild::TestCases::new(); let t = ::test_tools::compiletime::TestCases::new(); t.pass( "tests/inc/dynamic/trybuild.rs" ); - t.compile_fail( "tests/inc/dynamic/namespace_does_not_exists.rs" ); + // t.compile_fail( "tests/inc/dynamic/namespace_does_not_exists.rs" ); } From ba851c1d1cfb6198bb0a54634c0d1d91d3c84ed2 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:16:16 +0300 Subject: [PATCH 06/14] test_tools : fixing --- module/core/test_tools/Cargo.toml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/module/core/test_tools/Cargo.toml b/module/core/test_tools/Cargo.toml index 3a8523ee33..e65f066ded 100644 --- a/module/core/test_tools/Cargo.toml +++ b/module/core/test_tools/Cargo.toml @@ -32,8 +32,8 @@ no-default-features = false [features] default = [ "enabled", - "standalone_build", - # "normal_build", + # "standalone_build", + "normal_build", "process_tools", "process_environment_is_cicd", ] @@ -52,12 +52,12 @@ enabled = [ # nightly = [ "typing_tools/nightly" ] normal_build = [ - # "dep:error_tools", - # "dep:collection_tools", - # "dep:impls_index", - # "dep:mem_tools", - # "dep:typing_tools", - # "dep:diagnostics_tools", + "dep:error_tools", + "dep:collection_tools", + "dep:impls_index", + "dep:mem_tools", + "dep:typing_tools", + "dep:diagnostics_tools", ] # standalone_build vesion of build is used to avoid cyclic dependency @@ -109,12 +109,12 @@ rand = { workspace = true } ## internal -# error_tools = { workspace = true, features = [ "full" ], optional = true } -# collection_tools = { workspace = true, features = [ "full" ], optional = true } -# impls_index = { workspace = true, features = [ "full" ], optional = true } -# mem_tools = { workspace = true, features = [ "full" ], optional = true } -# typing_tools = { workspace = true, features = [ "full" ], optional = true } -# diagnostics_tools = { workspace = true, features = [ "full" ], optional = true } +error_tools = { workspace = true, features = [ "full" ], optional = true } +collection_tools = { workspace = true, features = [ "full" ], optional = true } +impls_index = { workspace = true, features = [ "full" ], optional = true } +mem_tools = { workspace = true, features = [ "full" ], optional = true } +typing_tools = { workspace = true, features = [ "full" ], optional = true } +diagnostics_tools = { workspace = true, features = [ "full" ], optional = true } ## transient From 8a9c9b22611b46b47dc8e9cfb377a7b25d0dee52 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:17:17 +0300 Subject: [PATCH 07/14] mem_tools-v0.9.0 --- Cargo.toml | 2 +- module/core/mem_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 983d830183..4df465b832 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -194,7 +194,7 @@ default-features = false ## mem [workspace.dependencies.mem_tools] -version = "~0.8.0" +version = "~0.9.0" path = "module/core/mem_tools" default-features = false diff --git a/module/core/mem_tools/Cargo.toml b/module/core/mem_tools/Cargo.toml index ba71b5759a..1b94badfa0 100644 --- a/module/core/mem_tools/Cargo.toml +++ b/module/core/mem_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mem_tools" -version = "0.8.0" +version = "0.9.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From b9610ff80ff55b524cb12754fdc8d5989aba2f98 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:17:26 +0300 Subject: [PATCH 08/14] diagnostics_tools-v0.11.0 --- Cargo.toml | 2 +- module/core/diagnostics_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4df465b832..6921b5c268 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -202,7 +202,7 @@ default-features = false ## diagnostics [workspace.dependencies.diagnostics_tools] -version = "~0.10.0" +version = "~0.11.0" path = "module/core/diagnostics_tools" default-features = false diff --git a/module/core/diagnostics_tools/Cargo.toml b/module/core/diagnostics_tools/Cargo.toml index 6103e7fb9c..d96279308b 100644 --- a/module/core/diagnostics_tools/Cargo.toml +++ b/module/core/diagnostics_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diagnostics_tools" -version = "0.10.0" +version = "0.11.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From 3b4448a4f0b3467b316b9a7a1c9657b7a4537259 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:17:38 +0300 Subject: [PATCH 09/14] typing_tools-v0.11.0 --- Cargo.toml | 2 +- module/core/typing_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6921b5c268..c4edd91abf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -324,7 +324,7 @@ default-features = false ## typing [workspace.dependencies.typing_tools] -version = "~0.10.0" +version = "~0.11.0" path = "module/core/typing_tools" default-features = false diff --git a/module/core/typing_tools/Cargo.toml b/module/core/typing_tools/Cargo.toml index 97878deab1..8a69dbb59b 100644 --- a/module/core/typing_tools/Cargo.toml +++ b/module/core/typing_tools/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "typing_tools" -version = "0.10.0" +version = "0.11.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From 8b26fdc8c0fe89334691f15c2391566a7ae7a8ec Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:17:53 +0300 Subject: [PATCH 10/14] impls_index-v0.11.0 --- Cargo.toml | 2 +- module/core/impls_index/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c4edd91abf..35693676d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -258,7 +258,7 @@ path = "module/core/component_model_types" default-features = false [workspace.dependencies.impls_index] -version = "~0.10.0" +version = "~0.11.0" path = "module/core/impls_index" default-features = false diff --git a/module/core/impls_index/Cargo.toml b/module/core/impls_index/Cargo.toml index a7c95c45aa..905d528ec4 100644 --- a/module/core/impls_index/Cargo.toml +++ b/module/core/impls_index/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impls_index" -version = "0.10.0" +version = "0.11.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From 13bf24dcc1872348483bc3a1f5019455ed232bee Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:18:07 +0300 Subject: [PATCH 11/14] error_tools-v0.22.0 --- Cargo.toml | 2 +- module/core/error_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 35693676d7..9ea1608724 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -357,7 +357,7 @@ default-features = false ## error [workspace.dependencies.error_tools] -version = "~0.21.0" +version = "~0.22.0" path = "module/core/error_tools" default-features = false diff --git a/module/core/error_tools/Cargo.toml b/module/core/error_tools/Cargo.toml index bfb9303d3d..8ca678f98d 100644 --- a/module/core/error_tools/Cargo.toml +++ b/module/core/error_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "error_tools" -version = "0.21.0" +version = "0.22.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From c4024c44e072dc9a6982870247c5b32642df2da3 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:18:31 +0300 Subject: [PATCH 12/14] test_tools-v0.16.0 --- Cargo.toml | 2 +- module/core/test_tools/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9ea1608724..56ac81d854 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -421,7 +421,7 @@ version = "~0.4.0" path = "module/alias/wtest" [workspace.dependencies.test_tools] -version = "~0.15.0" +version = "~0.16.0" path = "module/core/test_tools" features = [ "full" ] diff --git a/module/core/test_tools/Cargo.toml b/module/core/test_tools/Cargo.toml index e65f066ded..672cb32c2e 100644 --- a/module/core/test_tools/Cargo.toml +++ b/module/core/test_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_tools" -version = "0.15.0" +version = "0.16.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From dea457c91bf097a4b313d65f22b2d46c38b508f7 Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:27:56 +0300 Subject: [PATCH 13/14] component_model_meta-v0.4.0 --- Cargo.toml | 2 +- module/core/component_model_meta/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 56ac81d854..872577277e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -248,7 +248,7 @@ path = "module/core/component_model" default-features = false [workspace.dependencies.component_model_meta] -version = "~0.3.0" +version = "~0.4.0" path = "module/core/component_model_meta" default-features = false diff --git a/module/core/component_model_meta/Cargo.toml b/module/core/component_model_meta/Cargo.toml index 3cd1c6c7bc..a6b2c08554 100644 --- a/module/core/component_model_meta/Cargo.toml +++ b/module/core/component_model_meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "component_model_meta" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", From 9f6db924269fff78fbceda3cd1bace2a48317b4d Mon Sep 17 00:00:00 2001 From: wandalen Date: Sat, 21 Jun 2025 18:28:14 +0300 Subject: [PATCH 14/14] component_model-v0.4.0 --- Cargo.toml | 2 +- module/core/component_model/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 872577277e..911dfcaed0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -243,7 +243,7 @@ path = "module/core/former_types" default-features = false [workspace.dependencies.component_model] -version = "~0.3.0" +version = "~0.4.0" path = "module/core/component_model" default-features = false diff --git a/module/core/component_model/Cargo.toml b/module/core/component_model/Cargo.toml index 9376a26742..b728e41c71 100644 --- a/module/core/component_model/Cargo.toml +++ b/module/core/component_model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "component_model" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = [ "Kostiantyn Wandalen ",