Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de46a51208 | ||
|
|
e8acafce8e | ||
|
|
bb2b2d6dd8 | ||
|
|
87c558c9cf | ||
|
|
b111f97c58 |
14
CHANGELOG.md
14
CHANGELOG.md
@@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v0.27.2]
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Disable default-features for rust-bitcoin and rust-miniscript dependencies, and for rust-esplora-client optional dependency.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Set default-features = false for rust-bitcoin and rust-miniscript #882
|
||||||
|
- Update esplora client dependency to version 0.4 #884
|
||||||
|
|
||||||
## [v0.27.1]
|
## [v0.27.1]
|
||||||
|
|
||||||
### Summary
|
### Summary
|
||||||
@@ -642,4 +653,5 @@ final transaction is created by calling `finish` on the builder.
|
|||||||
[v0.26.0]: https://github.com/bitcoindevkit/bdk/compare/v0.25.0...v0.26.0
|
[v0.26.0]: https://github.com/bitcoindevkit/bdk/compare/v0.25.0...v0.26.0
|
||||||
[v0.27.0]: https://github.com/bitcoindevkit/bdk/compare/v0.26.0...v0.27.0
|
[v0.27.0]: https://github.com/bitcoindevkit/bdk/compare/v0.26.0...v0.27.0
|
||||||
[v0.27.1]: https://github.com/bitcoindevkit/bdk/compare/v0.27.0...v0.27.1
|
[v0.27.1]: https://github.com/bitcoindevkit/bdk/compare/v0.27.0...v0.27.1
|
||||||
[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...HEAD
|
[v0.27.2]: https://github.com/bitcoindevkit/bdk/compare/v0.27.1...v0.27.2
|
||||||
|
[Unreleased]: https://github.com/bitcoindevkit/bdk/compare/v0.27.2...HEAD
|
||||||
|
|||||||
14
Cargo.toml
14
Cargo.toml
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bdk"
|
name = "bdk"
|
||||||
version = "0.27.1"
|
version = "0.27.2"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
|
authors = ["Alekos Filini <alekos.filini@gmail.com>", "Riccardo Casatta <riccardo@casatta.it>"]
|
||||||
homepage = "https://bitcoindevkit.org"
|
homepage = "https://bitcoindevkit.org"
|
||||||
@@ -14,8 +14,8 @@ license = "MIT OR Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bdk-macros = "^0.6"
|
bdk-macros = "^0.6"
|
||||||
log = "^0.4"
|
log = "^0.4"
|
||||||
miniscript = { version = "9.0", features = ["serde"] }
|
miniscript = { version = "9.0", default-features = false, features = ["serde"] }
|
||||||
bitcoin = { version = "0.29.1", features = ["serde", "base64", "rand"] }
|
bitcoin = { version = "0.29.2", default-features = false, features = ["serde", "base64", "rand"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
serde_json = { version = "^1.0" }
|
serde_json = { version = "^1.0" }
|
||||||
rand = "^0.8"
|
rand = "^0.8"
|
||||||
@@ -23,7 +23,7 @@ rand = "^0.8"
|
|||||||
# Optional dependencies
|
# Optional dependencies
|
||||||
sled = { version = "0.34", optional = true }
|
sled = { version = "0.34", optional = true }
|
||||||
electrum-client = { version = "0.12", optional = true }
|
electrum-client = { version = "0.12", optional = true }
|
||||||
esplora-client = { version = "0.3", default-features = false, optional = true }
|
esplora-client = { version = "0.4", default-features = false, optional = true }
|
||||||
rusqlite = { version = "0.28.0", optional = true }
|
rusqlite = { version = "0.28.0", optional = true }
|
||||||
ahash = { version = "0.7.6", optional = true }
|
ahash = { version = "0.7.6", optional = true }
|
||||||
futures = { version = "0.3", optional = true }
|
futures = { version = "0.3", optional = true }
|
||||||
@@ -31,7 +31,7 @@ async-trait = { version = "0.1", optional = true }
|
|||||||
rocksdb = { version = "0.14", default-features = false, features = ["snappy"], optional = true }
|
rocksdb = { version = "0.14", default-features = false, features = ["snappy"], optional = true }
|
||||||
cc = { version = ">=1.0.64", optional = true }
|
cc = { version = ">=1.0.64", optional = true }
|
||||||
socks = { version = "0.3", optional = true }
|
socks = { version = "0.3", optional = true }
|
||||||
hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] }
|
hwi = { version = "0.5", optional = true, features = ["use-miniscript"] }
|
||||||
|
|
||||||
bip39 = { version = "1.0.1", optional = true }
|
bip39 = { version = "1.0.1", optional = true }
|
||||||
bitcoinconsensus = { version = "0.19.0-3", optional = true }
|
bitcoinconsensus = { version = "0.19.0-3", optional = true }
|
||||||
@@ -104,6 +104,8 @@ test-hardware-signer = ["hardware-signer"]
|
|||||||
dev-getrandom-wasm = ["getrandom/js"]
|
dev-getrandom-wasm = ["getrandom/js"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
miniscript = { version = "9.0", features = ["std"] }
|
||||||
|
bitcoin = { version = "0.29.2", features = ["std"] }
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
env_logger = "0.7"
|
env_logger = "0.7"
|
||||||
electrsd = "0.22"
|
electrsd = "0.22"
|
||||||
@@ -112,6 +114,8 @@ base64 = "^0.13"
|
|||||||
assert_matches = "1.5.0"
|
assert_matches = "1.5.0"
|
||||||
# zip versions after 0.6.3 don't work with our MSRV 1.57.0
|
# zip versions after 0.6.3 don't work with our MSRV 1.57.0
|
||||||
zip = "=0.6.3"
|
zip = "=0.6.3"
|
||||||
|
# base64ct versions at 1.6.0 and higher have MSRV 1.60.0
|
||||||
|
base64ct = "<1.6.0"
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "compact_filters_balance"
|
name = "compact_filters_balance"
|
||||||
|
|||||||
Reference in New Issue
Block a user