Skip to content

Commit 5f35952

Browse files
committed
publishing
1 parent 5ed0bbe commit 5f35952

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,10 @@ version = "~0.10.0"
379379
path = "module/core/process_tools"
380380
default-features = false
381381

382-
[workspace.dependencies.process_tools_published]
383-
package = "process_tools"
384-
version = "~0.9.0"
385-
default-features = false
382+
# [workspace.dependencies.process_tools_published]
383+
# package = "process_tools"
384+
# version = "~0.9.0"
385+
# default-features = false
386386

387387

388388
## test

module/core/macro_tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,5 @@ iter_tools = { workspace = true, features = [ "iter_trait" ] }
108108
clone_dyn_types = { workspace = true, features = [] }
109109
former_types = { workspace = true, features = [ "types_component_assign" ] }
110110

111-
[dev-dependencies]
112-
test_tools = { workspace = true }
111+
# [dev-dependencies]
112+
# test_tools = { workspace = true }

module/core/test_tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ enabled = [
5959
"typing_tools/enabled",
6060
"data_type/enabled",
6161
"diagnostics_tools/enabled",
62-
"process_tools_published/enabled",
62+
"process_tools/enabled",
6363
"collection_tools/enabled",
6464
]
6565
# nightly = [ "typing_tools/nightly" ]
@@ -83,7 +83,7 @@ mem_tools = { workspace = true, features = [ "full" ] }
8383
typing_tools = { workspace = true, features = [ "full" ] }
8484
data_type = { workspace = true, features = [ "full" ] }
8585
diagnostics_tools = { workspace = true, features = [ "full" ] }
86-
process_tools_published = { workspace = true, features = [ "full" ] }
86+
process_tools = { workspace = true, features = [ "full" ] }
8787
collection_tools = { workspace = true, features = [ "full" ] }
8888
# former_stable = { workspace = true, features = [ "full" ] }
8989

module/core/test_tools/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ pub mod dependency
4242

4343
#[ doc( inline ) ]
4444
#[ allow( unused_imports ) ]
45-
pub use ::process_tools_published;
45+
pub use ::process_tools;
4646
#[ doc( inline ) ]
4747
#[ allow( unused_imports ) ]
48-
pub use ::process_tools_published as process_tools;
48+
pub use ::process_tools as process_tools;
4949

5050
}
5151

0 commit comments

Comments
 (0)