Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ default-features = false
# path = "module/core/type_constructor_derive_pair_meta"

[workspace.dependencies.interval_adapter]
version = "~0.24.0"
version = "~0.25.0"
path = "module/core/interval_adapter"
default-features = false
features = [ "enabled" ]
Expand All @@ -110,7 +110,7 @@ default-features = false
features = [ "enabled" ]

[workspace.dependencies.collection_tools]
version = "~0.12.0"
version = "~0.13.0"
path = "module/core/collection_tools"
default-features = false

Expand Down Expand Up @@ -176,7 +176,7 @@ path = "module/core/clone_dyn_meta"
features = [ "enabled" ]

[workspace.dependencies.clone_dyn_types]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/clone_dyn_types"
default-features = false
features = [ "enabled" ]
Expand All @@ -201,7 +201,7 @@ default-features = false
## iter

[workspace.dependencies.iter_tools]
version = "~0.21.0"
version = "~0.22.0"
path = "module/core/iter_tools"
default-features = false

Expand Down Expand Up @@ -234,7 +234,7 @@ path = "module/core/former_meta"
default-features = false

[workspace.dependencies.former_types]
version = "~2.8.0"
version = "~2.9.0"
path = "module/core/former_types"
default-features = false

Expand Down Expand Up @@ -279,7 +279,7 @@ default-features = false
## macro tools

[workspace.dependencies.macro_tools]
version = "~0.40.0"
version = "~0.41.0"
path = "module/core/macro_tools"
default-features = false

Expand Down Expand Up @@ -379,10 +379,10 @@ version = "~0.10.0"
path = "module/core/process_tools"
default-features = false

[workspace.dependencies.process_tools_published]
package = "process_tools"
version = "~0.9.0"
default-features = false
# [workspace.dependencies.process_tools_published]
# package = "process_tools"
# version = "~0.9.0"
# default-features = false


## test
Expand Down
2 changes: 1 addition & 1 deletion module/core/clone_dyn_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clone_dyn_types"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/collection_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "collection_tools"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/former_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "former_types"
version = "2.8.0"
version = "2.9.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/interval_adapter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "interval_adapter"
version = "0.24.0"
version = "0.25.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/iter_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iter_tools"
version = "0.21.0"
version = "0.22.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions module/core/macro_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macro_tools"
version = "0.40.0"
version = "0.41.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down Expand Up @@ -108,5 +108,5 @@ iter_tools = { workspace = true, features = [ "iter_trait" ] }
clone_dyn_types = { workspace = true, features = [] }
former_types = { workspace = true, features = [ "types_component_assign" ] }

[dev-dependencies]
test_tools = { workspace = true }
# [dev-dependencies]
# test_tools = { workspace = true }
4 changes: 2 additions & 2 deletions module/core/test_tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ enabled = [
"typing_tools/enabled",
"data_type/enabled",
"diagnostics_tools/enabled",
"process_tools_published/enabled",
"process_tools/enabled",
"collection_tools/enabled",
]
# nightly = [ "typing_tools/nightly" ]
Expand All @@ -83,7 +83,7 @@ mem_tools = { workspace = true, features = [ "full" ] }
typing_tools = { workspace = true, features = [ "full" ] }
data_type = { workspace = true, features = [ "full" ] }
diagnostics_tools = { workspace = true, features = [ "full" ] }
process_tools_published = { workspace = true, features = [ "full" ] }
process_tools = { workspace = true, features = [ "full" ] }
collection_tools = { workspace = true, features = [ "full" ] }
# former_stable = { workspace = true, features = [ "full" ] }

Expand Down
4 changes: 2 additions & 2 deletions module/core/test_tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ pub mod dependency

#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::process_tools_published;
pub use ::process_tools;
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use ::process_tools_published as process_tools;
pub use ::process_tools as process_tools;

}

Expand Down
Loading