]> Untitled Git - bdk/commitdiff
Activate miniscript/use-serde feature
authorLucas Soriano del Pino <l.soriano.del.pino@gmail.com>
Thu, 23 Sep 2021 09:49:06 +0000 (19:49 +1000)
committerLucas Soriano del Pino <l.soriano.del.pino@gmail.com>
Thu, 23 Sep 2021 09:49:06 +0000 (19:49 +1000)
CHANGELOG.md
Cargo.toml

index 90805b0ceba1bd5e6d82bb48d9cc99da76e67dbd..7b41a92b591a115e99c90801f0af084a2d315f86 100644 (file)
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
+- Activate `miniscript/use-serde` feature to allow consumers of the library to access it via the re-exported `miniscript` crate.
+
 ## [v0.11.0] - [v0.10.0]
 
 - Added `flush` method to the `Database` trait to explicitly flush to disk latest changes on the db.
@@ -376,4 +378,4 @@ final transaction is created by calling `finish` on the builder.
 [v0.8.0]: https://github.com/bitcoindevkit/bdk/compare/v0.7.0...v0.8.0
 [v0.9.0]: https://github.com/bitcoindevkit/bdk/compare/v0.8.0...v0.9.0
 [v0.10.0]: https://github.com/bitcoindevkit/bdk/compare/v0.9.0...v0.10.0
-[v0.11.0]: https://github.com/bitcoindevkit/bdk/compare/v0.10.0...v0.11.0
\ No newline at end of file
+[v0.11.0]: https://github.com/bitcoindevkit/bdk/compare/v0.10.0...v0.11.0
index e4d7c8c5584e1010c181d9e508b016266a39d201..2fbc56bd4bcc99c4e42739787c01b1fd8f8ad227 100644 (file)
@@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
 [dependencies]
 bdk-macros = { path = "macros"} # TODO: Change this to version number after next release.
 log = "^0.4"
-miniscript = "^6.0"
+miniscript = { version = "^6.0", features = ["use-serde"] }
 bitcoin = { version = "^0.27", features = ["use-serde", "base64"] }
 serde = { version = "^1.0", features = ["derive"] }
 serde_json = { version = "^1.0" }