Cargo: fix the rust-miniscript patched dependency for downstream

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.
This commit is contained in:
Antoine Poinsot 2022-12-08 12:06:19 +01:00
parent 9ba5f67308
commit 293c28570c
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" }