This is an automated email from the ASF dual-hosted git repository.

kriskras99 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 98d6caf  chore(deps): Bump criterion from 0.7.0 to 0.8.0 (#344)
98d6caf is described below

commit 98d6caf8add9d5ea7a53a71b9872dbf23cde4030
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 3 11:03:26 2025 +0100

    chore(deps): Bump criterion from 0.7.0 to 0.8.0 (#344)
    
    Bumps [criterion](https://github.com/criterion-rs/criterion.rs) from 0.7.0 
to 0.8.0.
    - [Release notes](https://github.com/criterion-rs/criterion.rs/releases)
    - 
[Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md)
    - 
[Commits](https://github.com/criterion-rs/criterion.rs/compare/criterion-plot-v0.7.0...criterion-v0.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: criterion
      dependency-version: 0.8.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      | 51 +++++++++++++++++++++++++++++++++++++++++++++++----
 avro/Cargo.toml |  2 +-
 2 files changed, 48 insertions(+), 5 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 3ed8538..bb2b8fc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -26,6 +26,15 @@ dependencies = [
  "memchr",
 ]
 
+[[package]]
+name = "alloca"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
+dependencies = [
+ "cc",
+]
+
 [[package]]
 name = "anes"
 version = "0.1.6"
@@ -336,10 +345,11 @@ dependencies = [
 
 [[package]]
 name = "criterion"
-version = "0.7.0"
+version = "0.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
+checksum = "a0dfe5e9e71bdcf4e4954f7d14da74d1cdb92a3a07686452d1509652684b1aab"
 dependencies = [
+ "alloca",
  "anes",
  "cast",
  "ciborium",
@@ -348,6 +358,7 @@ dependencies = [
  "itertools",
  "num-traits",
  "oorandom",
+ "page_size",
  "regex",
  "serde",
  "serde_json",
@@ -357,9 +368,9 @@ dependencies = [
 
 [[package]]
 name = "criterion-plot"
-version = "0.6.0"
+version = "0.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
+checksum = "5de36c2bee19fba779808f92bf5d9b0fa5a40095c277aba10c458a12b35d21d6"
 dependencies = [
  "cast",
  "itertools",
@@ -754,6 +765,16 @@ version = "11.1.5"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
 
+[[package]]
+name = "page_size"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
+dependencies = [
+ "libc",
+ "winapi",
+]
+
 [[package]]
 name = "paste"
 version = "1.0.15"
@@ -1282,6 +1303,22 @@ dependencies = [
  "wasm-bindgen",
 ]
 
+[[package]]
+name = "winapi"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
+dependencies = [
+ "winapi-i686-pc-windows-gnu",
+ "winapi-x86_64-pc-windows-gnu",
+]
+
+[[package]]
+name = "winapi-i686-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
+
 [[package]]
 name = "winapi-util"
 version = "0.1.11"
@@ -1291,6 +1328,12 @@ dependencies = [
  "windows-sys 0.61.2",
 ]
 
+[[package]]
+name = "winapi-x86_64-pc-windows-gnu"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+
 [[package]]
 name = "windows-link"
 version = "0.2.1"
diff --git a/avro/Cargo.toml b/avro/Cargo.toml
index 4b37aa2..270cba9 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.100", features = ["std"] }
 apache-avro-test-helper = { default-features = false, version = "0.22.0", path 
= "../avro_test_helper" }
-criterion = { default-features = false, version = "0.7.0" }
+criterion = { default-features = false, version = "0.8.0" }
 hex-literal = { default-features = false, version = "1.1.0" }
 md-5 = { default-features = false, version = "0.10.6" }
 pretty_assertions = { workspace = true }

Reply via email to