Skip to content

Commit 39a103a

Browse files
authored
Merge pull request #1605 from Wandalen/cleaning_3
AUTO : Forward from cleaning_3 to alpha
2 parents 3eab5f7 + eeae82c commit 39a103a

File tree

388 files changed

+1291
-777
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+1291
-777
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ path = "module/move/llm_tools"
587587

588588
[workspace.dependencies.benchkit]
589589
version = "~0.9.0"
590-
path = "module/move/benchkit"
590+
path = "module/core/benchkit"
591591

592592
## steps
593593

module/alias/winterval/examples/winterval_non_iterable.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
fn main() {
44
use winterval::{NonIterableInterval, IntoInterval, Bound};
55

6-
fn f1(interval: impl NonIterableInterval) {
6+
fn f1(interval: &impl NonIterableInterval) {
77
println!(
88
"Do something with this {:?} .. {:?} interval",
99
interval.left(),
@@ -12,12 +12,12 @@ fn main() {
1212
}
1313

1414
// Iterable/bound interval from tuple.
15-
f1((Bound::Included(0), Bound::Included(3)).into_interval());
15+
f1(&(Bound::Included(0), Bound::Included(3)).into_interval());
1616
// Non-iterable/unbound interval from tuple.
17-
f1((Bound::Included(0), Bound::Unbounded).into_interval());
17+
f1(&(Bound::Included(0), Bound::Unbounded).into_interval());
1818
// Non-iterable/unbound interval from `core::ops::RangeFrom`.
19-
f1(0..);
19+
f1(&(0..));
2020
// Non-iterable/unbound interval from `core::ops::RangeFull`
2121
// what is ( -Infinity .. +Infinity ).
22-
f1(..);
22+
f1(&(..));
2323
}

module/move/benchkit/Cargo.toml renamed to module/core/benchkit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ authors = [
88
license = "MIT"
99
readme = "readme.md"
1010
documentation = "https://docs.rs/benchkit"
11-
repository = "https://github.com/Wandalen/wTools/tree/master/module/move/benchkit"
12-
homepage = "https://github.com/Wandalen/wTools/tree/master/module/move/benchkit"
11+
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/benchkit"
12+
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/benchkit"
1313
description = """
1414
Lightweight benchmarking toolkit focused on practical performance analysis and report generation.
1515
Non-restrictive alternative to criterion, designed for easy integration and markdown report generation.

0 commit comments

Comments
 (0)