Merge #178: Cargo: fix the rust-miniscript patched dependency for downstream

293c28570ca28e1375d424245a907c8d0b7e2f85 Cargo: fix the rust-miniscript patched dependency for downstream (Antoine Poinsot)

Pull request description:

  This new syntax would actually force all downstream users to apply the patch section in their Cargo.toml! Revert to the previous syntax of specifying the git repo directly.

ACKs for top commit:
  darosior:
    self-ACK 293c28570ca28e1375d424245a907c8d0b7e2f85

Tree-SHA512: ddddf7e680c13f2b8b3d64ca01d928e9ce64af18f21bc8eaecc009f4c6aee8aae85cecd027173ed13505035506dff659b11a5d8595d838d09098b213c5a43c99
This commit is contained in:
Antoine Poinsot 2022-12-08 15:01:45 +01:00
commit 4479ff91d2
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -25,7 +25,7 @@ jsonrpc_server = []
[dependencies]
# For managing transactions (it re-exports the bitcoin crate)
miniscript = { version = "9.0", features = ["serde"] }
miniscript = { git = "https://github.com/darosior/rust-miniscript", branch = "multipath_descriptors_on_9.0", features = ["serde"] }
# Don't reinvent the wheel
dirs = "3.0"
@ -58,4 +58,4 @@ libc = "0.2"
base64 = "0.13"
[patch.crates-io]
miniscript = { git = "https://github.com/darosior/rust-miniscript", branch = "multipath_descriptors_on_9.0" }