Skip to content

Commit 5cb28d3

Browse files
committed
publishing
1 parent 9c19b1b commit 5cb28d3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

module/core/collection_tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ collection_into_constructors = []
6565
## external
6666
hashbrown = { version = "~0.14.3", optional = true, default-features = false, features = [ "default" ] }
6767

68-
# [dev-dependencies]
68+
[dev-dependencies]
6969
test_tools = { workspace = true }
7070
# former = { workspace = true }

module/core/iter_tools/src/iter.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ mod private
55
#[ allow( unused_imports ) ]
66
use crate::*;
77
// use ::itertools::process_results;
8+
9+
#[ cfg( feature = "iter_trait" ) ]
810
use clone_dyn_types::CloneDyn;
911

1012
/// Trait that encapsulates an iterator with specific characteristics and implemetning `CloneDyn`.

module/core/test_tools/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ pub mod dependency
4343
#[ doc( inline ) ]
4444
#[ allow( unused_imports ) ]
4545
pub use ::process_tools;
46-
#[ doc( inline ) ]
47-
#[ allow( unused_imports ) ]
48-
pub use ::process_tools as process_tools;
46+
// #[ doc( inline ) ]
47+
// #[ allow( unused_imports ) ]
48+
// pub use ::process_tools as process_tools;
4949

5050
}
5151

0 commit comments

Comments
 (0)