-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to bitcoin 0.27.0-rc.1. Make miniscript optional
- Loading branch information
1 parent
9004e69
commit ae60dc4
Showing
28 changed files
with
495 additions
and
426 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "descriptor-wallet" | ||
version = "0.6.0" | ||
version = "0.6.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Libraries and command line tool for building descriptor-based bitcoin wallets" | ||
|
@@ -23,44 +23,44 @@ required-features = ["keygen", "bip39", "aes", "rpassword", "cli"] | |
|
||
[[bin]] | ||
name = "btc-cold" | ||
required-features = ["electrum", "cli"] | ||
required-features = ["electrum", "cli", "miniscript"] | ||
|
||
[dependencies] | ||
amplify = "3.9.1" | ||
descriptors = { version = "0.6.0", path = "./descriptors", optional = true } | ||
bitcoin_scripts = { version = "0.6.0", path = "./scripts" } | ||
bitcoin_hd = { version = "0.6.0", path = "./hd" } | ||
bitcoin_onchain = { version = "0.6.0", path = "./onchain" } | ||
psbt = { version = "0.6.0", path = "./psbt" } | ||
slip132 = { version = "0.6.0", path = "./slip132", features = ["strict_encoding"] } | ||
commit_verify = { version = "0.6.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop" } | ||
amplify = "3.12.0" | ||
descriptors = { version = "0.6.0-beta.1", path = "./descriptors", optional = true, default-features = false } | ||
bitcoin_scripts = { version = "0.6.0-beta.1", path = "./scripts" } | ||
bitcoin_hd = { version = "0.6.0-beta.1", path = "./hd" } | ||
bitcoin_onchain = { version = "0.6.0-beta.1", path = "./onchain" } | ||
psbt = { version = "0.6.0-beta.1", path = "./psbt", default-features = false } | ||
slip132 = { version = "0.6.0-beta.1", path = "./slip132", features = ["strict_encoding"] } | ||
commit_verify = "0.6.0-alpha.1" | ||
# TODO #5: Make strict encoding optional | ||
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop", features = ["bitcoin", "miniscript", "derive"] } | ||
lightning_encoding = { version = "0.6.0", git = "https://github.com/LNP-BP/lnp-core", branch = "v0.6" } | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" } | ||
miniscript = { version = "7", git = "https://github.com/LNP-BP/rust-miniscript", branch = "taproot", features = ["compiler"] } | ||
electrum-client = { version = "0.9", git = "https://github.com/LNP-BP/rust-electrum-client", branch = "taproot", optional = true } | ||
strict_encoding = { version = "1.8.0-rc.1", features = ["bitcoin", "derive"] } | ||
bitcoin = "0.28.0-rc.1" | ||
miniscript_crate = { package = "miniscript", version = "6.0.1", git = "https://github.com/rust-bitcoin/rust-miniscript", optional = true } | ||
electrum-client = { version = "0.9.0-rc.1", optional = true } | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
serde_with = { version = "1.5", features = ["hex"], optional = true } | ||
serde_yaml = { version = "0.8.21", optional = true } | ||
chrono = "0.4" | ||
clap = { version = "3.0.0-rc.4", optional = true, features = ["derive"] } | ||
clap = { version = "3.0", optional = true, features = ["derive"] } | ||
bip39 = { version = "1.0.1", optional = true } | ||
aes = { version = "0.7.5", optional = true } | ||
rpassword = { version = "5.0.1", optional = true } | ||
colored = { version = "2", optional = true } | ||
|
||
[dev-dependencies] | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all", features = ["rand"] } | ||
bitcoin = { version = "0.28.0-rc.1", features = ["rand"] } | ||
|
||
[features] | ||
default = [] | ||
all = ["keygen", "serde", "electrum"] | ||
miniscript = ["miniscript_crate", "bitcoin_hd/miniscript", "bitcoin_onchain/miniscript", "descriptors/miniscript", "psbt/miniscript", "bitcoin_scripts/miniscript"] | ||
cli = ["serde", "colored", "clap", "serde_yaml", "bitcoin/base64"] | ||
electrum = ["electrum-client", "bitcoin_onchain/electrum"] | ||
keygen = ["bitcoin/rand", "commit_verify/rand", "amplify/rand", "descriptors/rand", "psbt/sign"] | ||
serde = ["serde_crate", "serde_with", "amplify/serde", | ||
"bitcoin/use-serde", "bitcoin_scripts/serde", "bitcoin_hd/serde", "miniscript/serde", "slip132/serde"] | ||
"bitcoin/use-serde", "bitcoin_scripts/serde", "bitcoin_hd/serde", "slip132/serde"] | ||
|
||
[workspace] | ||
members = [".", "slip132", "libbitcoin", "descriptors", "scripts", "hd", "psbt", "onchain"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "descriptors" | ||
version = "0.6.0" | ||
version = "0.6.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin descriptors library (part of descriptor-wallet)" | ||
|
@@ -13,12 +13,12 @@ edition = "2018" | |
exclude = [] | ||
|
||
[dependencies] | ||
amplify = "3.9.1" | ||
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop", features = ["bitcoin", "miniscript"] } | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" } | ||
miniscript = { version = "7", git = "https://github.com/LNP-BP/rust-miniscript", branch = "taproot", features = ["compiler"], optional = true } | ||
bitcoin_hd = { version = "0.6.0", path = "../hd" } | ||
bitcoin_scripts = { version = "0.6.0", path = "../scripts" } | ||
amplify = "3.12.0" | ||
strict_encoding = "1.8.0-rc.1" | ||
bitcoin = "0.28.0-rc.1" | ||
miniscript = { version = "6.0.1", git = "https://github.com/rust-bitcoin/rust-miniscript", features = ["compiler"], optional = true } | ||
bitcoin_hd = { version = "0.6.0-beta.1", path = "../hd" } | ||
bitcoin_scripts = { version = "0.6.0-beta.1", path = "../scripts" } | ||
|
||
[features] | ||
all = ["rand", "miniscript"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bitcoin_hd" | ||
version = "0.6.0" | ||
version = "0.6.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin hierarchical deterministic wallet library" | ||
|
@@ -13,15 +13,15 @@ edition = "2018" | |
exclude = [] | ||
|
||
[dependencies] | ||
amplify = "3.9.1" | ||
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop" } | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" } | ||
miniscript = { version = "7", git = "https://github.com/LNP-BP/rust-miniscript", branch = "taproot" } | ||
slip132 = { version = "0.6.0", path = "../slip132" } | ||
amplify = "3.12.0" | ||
strict_encoding = "1.8.0-rc.1" | ||
bitcoin = "0.28.0-rc.1" | ||
miniscript = { version = "6.0.1", git = "https://github.com/rust-bitcoin/rust-miniscript", optional = true } | ||
slip132 = { version = "0.6.0-beta.1", path = "../slip132" } | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
serde_with = { version = "1.5", features = ["hex"], optional = true } | ||
|
||
[features] | ||
default = [] | ||
all = ["serde"] | ||
all = ["serde", "miniscript"] | ||
serde = ["serde_crate", "serde_with", "amplify/serde", "bitcoin/serde", "miniscript/serde", "slip132/serde"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libbitcoin" | ||
version = "0.3.0" | ||
version = "0.3.0-rc.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr Maxim Orlovsky <[email protected]>"] | ||
description = "C library for building descriptor-based bitcoin wallets" | ||
|
@@ -16,7 +16,7 @@ libc = "0.2" | |
lazy_static = "1.4" | ||
amplify = "3" | ||
amplify_derive = "2.4" | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" } | ||
bitcoin = "0.28.0-rc.1" | ||
bip39 = "1.0.1" | ||
rand = "0.8.3" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bitcoin_onchain" | ||
version = "0.6.0" | ||
version = "0.6.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin descriptors library (part of descriptor-wallet)" | ||
|
@@ -13,16 +13,17 @@ edition = "2018" | |
exclude = [] | ||
|
||
[dependencies] | ||
amplify = "3.9.1" | ||
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" } | ||
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop" } | ||
descriptors = { version = "0.6.0-alpha.1", path = "../descriptors" } | ||
bitcoin_hd = { version = "0.6.0-alpha.1", path = "../hd" } | ||
miniscript = { version = "7", git = "https://github.com/LNP-BP/rust-miniscript", branch = "taproot", features = ["compiler"] } | ||
amplify = "3.12.0" | ||
bitcoin = "0.28.0-rc.1" | ||
strict_encoding = "1.8.0-rc.1" | ||
descriptors = { version = "0.6.0-beta.1", path = "../descriptors", default-features = false } | ||
bitcoin_hd = { version = "0.6.0-beta.1", path = "../hd" } | ||
miniscript_crate = { package = "miniscript", version = "6.0.1", git = "https://github.com/rust-bitcoin/rust-miniscript", optional = true } | ||
electrum-client = { version = "0.9.0-rc.1", optional = true } | ||
chrono = "0.4.19" | ||
electrum-client = { version = "0.9", git = "https://github.com/LNP-BP/rust-electrum-client", branch = "taproot", optional = true } | ||
|
||
[features] | ||
default = [] | ||
all = ["electrum"] | ||
all = ["electrum", "miniscript"] | ||
miniscript = ["miniscript_crate", "descriptors/miniscript", "bitcoin_hd/miniscript"] | ||
electrum = ["electrum-client"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.