This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git
The following commit(s) were added to refs/heads/main by this push:
new e1a5f88 chore(deps): Bump criterion from 0.6.0 to 0.7.0 (#243)
e1a5f88 is described below
commit e1a5f88cc1649825620c615f7480292e7095c6ef
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Jul 28 10:31:29 2025 +0300
chore(deps): Bump criterion from 0.6.0 to 0.7.0 (#243)
Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.6.0 to
0.7.0.
-
[Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bheisler/criterion.rs/compare/0.6.0...0.7.0)
---
updated-dependencies:
- dependency-name: criterion
dependency-version: 0.7.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 21 ++++++---------------
avro/Cargo.toml | 2 +-
2 files changed, 7 insertions(+), 16 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 1e0c952..c2c4407 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -330,16 +330,16 @@ dependencies = [
[[package]]
name = "criterion"
-version = "0.6.0"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
+checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
dependencies = [
"anes",
"cast",
"ciborium",
"clap",
"criterion-plot",
- "itertools 0.13.0",
+ "itertools",
"num-traits",
"oorandom",
"regex",
@@ -351,12 +351,12 @@ dependencies = [
[[package]]
name = "criterion-plot"
-version = "0.5.0"
+version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
+checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
dependencies = [
"cast",
- "itertools 0.10.5",
+ "itertools",
]
[[package]]
@@ -644,15 +644,6 @@ version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
-[[package]]
-name = "itertools"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
-dependencies = [
- "either",
-]
-
[[package]]
name = "itertools"
version = "0.13.0"
diff --git a/avro/Cargo.toml b/avro/Cargo.toml
index bae807f..c099cdd 100644
--- a/avro/Cargo.toml
+++ b/avro/Cargo.toml
@@ -84,7 +84,7 @@ rand = { default-features = false, version = "0.9.2",
features = ["default"] }
[dev-dependencies]
anyhow = { default-features = false, version = "1.0.98", features = ["std"] }
apache-avro-test-helper = { default-features = false, version = "0.20.0", path
= "../avro_test_helper" }
-criterion = { default-features = false, version = "0.6.0" }
+criterion = { default-features = false, version = "0.7.0" }
hex-literal = { default-features = false, version = "1.0.0" }
md-5 = { default-features = false, version = "0.10.6" }
pretty_assertions = { default-features = false, version = "1.4.1", features =
["std"] }