From ed88439f588b5c95adedb5ef677a62447cdd16d2 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sun, 15 Dec 2024 19:50:40 -0600 Subject: [PATCH] deps(chain): update criterion for benches tests to 0.5 to fix warning warning: the following packages contain code that will be rejected by a future version of Rust: criterion v0.2.11 --- crates/chain/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/chain/Cargo.toml b/crates/chain/Cargo.toml index bbc5a8b17..b845f3219 100644 --- a/crates/chain/Cargo.toml +++ b/crates/chain/Cargo.toml @@ -28,7 +28,7 @@ rusqlite = { version = "0.31.0", features = ["bundled"], optional = true } rand = "0.8" proptest = "1.2.0" bdk_testenv = { path = "../testenv", default-features = false } -criterion = { version = "0.2" } +criterion = { version = "0.5" } [features] default = ["std", "miniscript"]