Upgrade: - bitcoin to v0.31.0 - miniscript to v11.0.0 Note: The bitcoin upgrade includes improvements to the `Transaction::weight()` function, it appears those guys did good, we no longer need to add the 2 additional weight units "just in case".
14 lines
361 B
TOML
14 lines
361 B
TOML
[package]
|
|
name = "bdk_hwi"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
homepage = "https://bitcoindevkit.org"
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
|
description = "Utilities to use bdk with hardware wallets"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
bdk = { path = "../bdk" }
|
|
hwi = { version = "0.8.0", features = [ "miniscript"] }
|