From c09f122e8cce14cf311bd6415777558f98734e0c Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 26 May 2022 14:50:11 +1000 Subject: [PATCH] Do not pin transitive ryu dependency We do not need to pin the `ryu` transitive dependency now that MSRV is not 1.29. --- Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a0e14e..24cfca9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,8 +50,6 @@ serde_json = "<1.0.45" serde_test = "1" secp256k1 = { version = "0.22.0", features = [ "recovery", "rand-std" ] } bincode = "1.3.1" -# We need to pin ryu (transitive dep from serde_json) to stay compatible with Rust 1.22.0 -ryu = "<1.0.5" [[example]] name = "bip32"