update dependency

dependency updated from tiny-bip39 to rust-bip39
This commit is contained in:
rajarshimaitra 2021-10-31 20:23:25 +05:30
parent 3d8efbf8bf
commit 3c8416bf31
No known key found for this signature in database
GPG Key ID: 558ACE7DBB4377C8

View File

@ -34,10 +34,7 @@ cc = { version = ">=1.0.64", optional = true }
socks = { version = "0.3", optional = true } socks = { version = "0.3", optional = true }
lazy_static = { version = "1.4", optional = true } lazy_static = { version = "1.4", optional = true }
# the latest 0.8 version of tiny-bip39 depends on zeroize_derive 1.2 which has MSRV 1.51 and our bip39 = { version = "1.0.1", optional = true }
# MSRV is 1.46, to fix this until we update our MSRV or replace the tiny-bip39
# dependency https://github.com/bitcoindevkit/bdk/issues/399 we can only use an older version
tiny-bip39 = { version = "< 0.8", optional = true }
# backtrace > 0.3.61 includes object v0.27 which doesn't compile on 1.46. this is used by # backtrace > 0.3.61 includes object v0.27 which doesn't compile on 1.46. this is used by
# tiny-bip39 # tiny-bip39
backtrace = { version = "=0.3.61", optional = true } backtrace = { version = "=0.3.61", optional = true }
@ -65,7 +62,7 @@ sqlite = ["rusqlite", "ahash"]
compact_filters = ["rocksdb", "socks", "lazy_static", "cc"] compact_filters = ["rocksdb", "socks", "lazy_static", "cc"]
key-value-db = ["sled"] key-value-db = ["sled"]
all-keys = ["keys-bip39"] all-keys = ["keys-bip39"]
keys-bip39 = ["tiny-bip39", "backtrace"] keys-bip39 = ["bip39"]
rpc = ["core-rpc"] rpc = ["core-rpc"]
# We currently provide mulitple implementations of `Blockchain`, all are # We currently provide mulitple implementations of `Blockchain`, all are