From c678bee3db1c5571b140830f49cdd0a3f852975c Mon Sep 17 00:00:00 2001 From: refcell Date: Tue, 3 Dec 2024 11:27:20 -0500 Subject: [PATCH] chore: Bump Other Dependencies (#856) * fix: bump * fix: bump --- Cargo.lock | 34 ++++++++++++++++++++++++++++++++-- Cargo.toml | 4 ++-- 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e9fdbd9c..90c4b1f44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,6 +39,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "aligned-vec" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e0966165eaf052580bd70eb1b32cb3d6245774c0104d1b2793e9650bf83b52a" +dependencies = [ + "equator", +] + [[package]] name = "alloc-no-stdlib" version = "2.0.4" @@ -1535,6 +1544,26 @@ dependencies = [ "syn 2.0.90", ] +[[package]] +name = "equator" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea" +dependencies = [ + "equator-macro", +] + +[[package]] +name = "equator-macro" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.90", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -3221,10 +3250,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "pprof" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef5c97c51bd34c7e742402e216abdeb44d415fbe6ae41d56b114723e953711cb" +checksum = "ebbe2f8898beba44815fdc9e5a4ae9c929e21c5dc29b0c774a15555f7f58d6d0" dependencies = [ + "aligned-vec", "backtrace", "cfg-if", "criterion", diff --git a/Cargo.toml b/Cargo.toml index b667d3a60..a0069faa9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ linked_list_allocator = "0.10.5" # General sha2 = { version = "0.10.8", default-features = false } -c-kzg = { version = "1.0.3", default-features = false } +c-kzg = { version = "2.0.0", default-features = false } anyhow = { version = "1.0.89", default-features = false } thiserror = { version = "2.0", default-features = false } @@ -119,7 +119,7 @@ tracing-subscriber = "0.3.18" tracing = { version = "0.1.40", default-features = false } # Testing -pprof = "0.13.0" +pprof = "0.14.0" proptest = "1.5" criterion = "0.5.1"