From 0494f50b1a4507fff0a0fbb1e3dacdc49a8d6572 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Sat, 18 Mar 2023 16:06:41 +0000 Subject: [PATCH] fix correct minimal versions for serde crates --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 68f11dd..c5a3862 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ global-context-less-secure = ["global-context"] [dependencies] secp256k1-sys = { version = "0.8.1", default-features = false, path = "./secp256k1-sys" } -serde = { version = "1.0", default-features = false, optional = true } +serde = { version = "1.0.103", default-features = false, optional = true } # You likely only want to enable these if you explicitly do not want to use "std", otherwise enable # the respective -std feature e.g., bitcoin-hashes-std @@ -48,7 +48,7 @@ rand = { version = "0.8", default-features = false, optional = true } [dev-dependencies] rand_core = "0.6" serde_cbor = "0.10.0" -serde_test = "1.0" +serde_test = "1.0.19" bincode = "1.3.3" [target.wasm32-unknown-unknown.dev-dependencies]