]> Untitled Git - bdk/commitdiff
[keys] limit version of zeroize to support rust 1.47+
authorSteve Myers <steve@notmandatory.org>
Mon, 19 Jul 2021 21:35:16 +0000 (14:35 -0700)
committerSteve Myers <steve@notmandatory.org>
Mon, 19 Jul 2021 21:35:16 +0000 (14:35 -0700)
Cargo.toml

index 421a0099fdfb395c4089b3963c027985ae2a805a..f6db796d0aa34ff36622c608a0ac12e0721188c2 100644 (file)
@@ -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"]