From 855a4f94d1fd2cc1eb36c089a68d25da0a38e1d1 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Sun, 16 Jun 2024 20:04:47 -0400 Subject: [PATCH] chore: bump secp256k1 to 0.29 (#79) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca9bf1d..bd297db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,13 +23,13 @@ sha3 = "0.10" k256 = { version = "0.13", features = ["ecdsa"], optional = true } serde = { version = "1.0", features = ["derive"], optional = true } ed25519-dalek = { version = "2.1.1", optional = true, features = ["rand_core"] } -secp256k1 = { version = "0.28", optional = true, default-features = false, features = [ +secp256k1 = { version = "0.29", optional = true, default-features = false, features = [ "global-context", ] } [dev-dependencies] alloy-rlp = { version = "0.3.4", features = ["derive"] } -secp256k1 = { version = "0.28", features = ["rand-std"] } +secp256k1 = { version = "0.29", features = ["rand-std"] } serde_json = "1.0" [features]