Skip to content

Commit 0260dfa

Browse files
Update criterion requirement from 0.5 to 0.7
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.5.0...0.7.0) --- updated-dependencies: - dependency-name: criterion dependency-version: 0.7.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3f2c202 commit 0260dfa

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ sprs = { version = "0.11", default-features = false }
4646

4747
thiserror = "2.0"
4848

49-
criterion = { version = "0.5", optional = true }
49+
criterion = { version = "0.7", optional = true }
5050

5151
[dependencies.serde_crate]
5252
package = "serde"

algorithms/linfa-clustering/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ndarray-npy = { version = "0.9", default-features = false }
5353
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
5454
"generate",
5555
] }
56-
criterion = "0.5"
56+
criterion = "0.7"
5757
serde_json = "1"
5858
approx = "0.5"
5959
lax = "0.17.0"

algorithms/linfa-ftrl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rand_xoshiro = "0.6.0"
3535
linfa = { version = "0.8.0", path = "../.." }
3636

3737
[dev-dependencies]
38-
criterion = "0.5"
38+
criterion = "0.7"
3939
approx = "0.5"
4040
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
4141
"winequality",

algorithms/linfa-ica/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ linfa = { version = "0.8.0", path = "../.." }
3939
[dev-dependencies]
4040
ndarray-npy = { version = "0.9", default-features = false }
4141
paste = "1.0"
42-
criterion = "0.5"
42+
criterion = "0.7"
4343
linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] }
4444

4545
[[bench]]

algorithms/linfa-linear/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
4444
"diabetes",
4545
] }
4646
approx = "0.5"
47-
criterion = "0.5"
47+
criterion = "0.7"
4848
statrs = "0.18"
4949
linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] }
5050

algorithms/linfa-nn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ linfa = { version = "0.8.0", path = "../.." }
3737

3838
[dev-dependencies]
3939
approx = "0.5"
40-
criterion = "0.5"
40+
criterion = "0.7"
4141
rand_xoshiro = "0.6"
4242
ndarray-rand = "0.15"
4343
linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] }

algorithms/linfa-pls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
4242
] }
4343
approx = "0.5"
4444
rand_xoshiro = "0.6"
45-
criterion = "0.5"
45+
criterion = "0.7"
4646
statrs = "0.18"
4747

4848
[[bench]]

algorithms/linfa-preprocessing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ curl = "0.4.35"
5353
flate2 = "1.0.20"
5454
tar = "0.4.33"
5555
linfa = { version = "0.8.0", path = "../..", features = ["benchmarks"] }
56-
criterion = "0.5"
56+
criterion = "0.7"
5757
statrs = "0.18"
5858

5959
# FIXME: Disabled as dataset link is broken

algorithms/linfa-trees/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ linfa = { version = "0.8.0", path = "../.." }
3131

3232
[dev-dependencies]
3333
rand = { version = "0.8", features = ["small_rng"] }
34-
criterion = "0.5"
34+
criterion = "0.7"
3535
approx = "0.5"
3636
linfa-datasets = { version = "0.8.0", path = "../../datasets/", features = [
3737
"iris",

0 commit comments

Comments
 (0)