From 93ee2646c1b5b07c2a236ff155b60195cd6d6bde Mon Sep 17 00:00:00 2001 From: edouardparis Date: Wed, 24 Apr 2024 17:15:02 +0200 Subject: [PATCH] Add zeroize version for msrv 1.65 --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 35a31fd..a783a98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ repository.workspace = true [features] default = ["ledger", "specter", "coldcard", "bitbox", "jade"] -bitbox = ["tokio", "hidapi", "bitbox-api", "regex", "prost", "prost-derive"] +bitbox = ["tokio", "hidapi", "bitbox-api", "regex", "prost", "prost-derive", "zeroize"] coldcard = ["dep:coldcard", "regex"] specter = ["tokio", "tokio-serial", "serialport"] jade = ["tokio", "tokio-serial", "serde", "serde_bytes", "serde_cbor", "serialport", "reqwest"] @@ -44,9 +44,10 @@ reqwest = { version = "0.11", default-features = false, features = ["json", "rus # bitbox bitbox-api = { version = "0.2.3", default-features = false, features = ["usb", "tokio", "multithreaded"], optional = true } -# pin the dep to satisfy msrv 1.65 +# pin the deps to satisfy msrv 1.65 prost = { version = "=0.12.2", optional = true } prost-derive = { version = "=0.12.2", optional = true } +zeroize = { version = "=1.7.0", optional = true } # coldcard coldcard = { version = "0.12.1", optional = true }