bitcoindevkit / bdk-cli

A CLI wallet library and REPL tool to demo and test the BDK library
Other
108 stars 64 forks source link

Converge base64 dependncies. #130

Open rajarshimaitra opened 1 year ago

rajarshimaitra commented 1 year ago

We currently have two different base64 dependency.

[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"

[[package]]
name = "base64-compat"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a8d4d2746f89841e49230dd26917df1876050f95abafafbe34f47cb534b88d7"
dependencies = [
 "byteorder",
]

This will be fixed once https://github.com/rust-bitcoin/rust-bitcoin/pull/1342 is merged in in rust-bitcoin upstream..