From: Steve Myers Date: Mon, 19 Jul 2021 21:35:16 +0000 (-0700) Subject: [keys] limit version of zeroize to support rust 1.47+ X-Git-Tag: 0.10.0~15 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/memory/enum.MessageSignatureError.html?a=commitdiff_plain;h=474620e6a574f7133a3339acfa7d0b1c62d5bb48;p=bdk [keys] limit version of zeroize to support rust 1.47+ --- diff --git a/Cargo.toml b/Cargo.toml index 421a0099..f6db796d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,6 +31,7 @@ cc = { version = ">=1.0.64", optional = true } socks = { version = "0.3", optional = true } lazy_static = { version = "1.4", optional = true } tiny-bip39 = { version = "^0.8", optional = true } +zeroize = { version = "<1.4.0", optional = true } bitcoinconsensus = { version = "0.19.0-3", optional = true } # Needed by bdk_blockchain_tests macro @@ -56,7 +57,7 @@ compact_filters = ["rocksdb", "socks", "lazy_static", "cc"] key-value-db = ["sled"] async-interface = ["async-trait"] all-keys = ["keys-bip39"] -keys-bip39 = ["tiny-bip39"] +keys-bip39 = ["tiny-bip39", "zeroize"] rpc = ["bitcoincore-rpc"]