-
-
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.
- Loading branch information
1 parent
2cc8794
commit 795fbd3
Showing
8 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.5.0-alpha.5" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Library for building descriptor-based bitcoin wallets" | ||
|
@@ -19,11 +19,11 @@ crate-type = ["rlib", "staticlib"] | |
|
||
[dependencies] | ||
amplify = "3.8.2" | ||
descriptors = { version = "0.5.0-alpha.2", path = "./descriptors", optional = true } | ||
bitcoin_scripts = { version = "0.5.0-alpha.3", path = "./scripts" } | ||
bitcoin_hd = { version = "0.5.0-alpha.3", path = "./hd" } | ||
psbt = { version = "0.5.0-alpha.2", path = "./psbt" } | ||
slip132 = { version = "0.5.0-beta.1", path = "./slip132", features = ["strict_encoding"] } | ||
descriptors = { version = "0.5.0", path = "./descriptors", optional = true } | ||
bitcoin_scripts = { version = "0.5.0", path = "./scripts" } | ||
bitcoin_hd = { version = "0.5.0", path = "./hd" } | ||
psbt = { version = "0.5.0", path = "./psbt" } | ||
slip132 = { version = "0.5.0", path = "./slip132", features = ["strict_encoding"] } | ||
commit_verify = "0.5.4" | ||
strict_encoding = { version = "1.6.1", features = ["bitcoin", "miniscript", "derive"] } # TODO #5: Make strict encoding optional and decrease MSRV | ||
bitcoin = "0.27" | ||
|
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.5.0-alpha.2" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin descriptors library (part of descriptor-wallet)" | ||
|
@@ -17,5 +17,5 @@ amplify = "3.8.2" | |
strict_encoding = { version = "1.6.1", features = ["miniscript"] } | ||
bitcoin = "0.27.0" | ||
miniscript = { version = "6.0.1", features = ["compiler"] } | ||
bitcoin_hd = { version = "0.5.0-alpha.1", path = "../hd" } | ||
bitcoin_scripts = { version = "0.5.0-alpha.1", path = "../scripts" } | ||
bitcoin_hd = { version = "0.5.0", path = "../hd" } | ||
bitcoin_scripts = { version = "0.5.0", path = "../scripts" } |
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.5.0-alpha.3" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin hierarchical deterministic wallet library" | ||
|
@@ -17,7 +17,7 @@ amplify = "3.8.2" | |
strict_encoding = "1.6.1" | ||
bitcoin = "0.27.0" | ||
miniscript = "6.0.1" | ||
slip132 = { version = "0.5.0-alpha.1", path = "../slip132" } | ||
slip132 = { version = "0.5.0", path = "../slip132" } | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
serde_with = { version = "1.5", features = ["hex"], optional = true } | ||
|
||
|
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.2.0-alpha.2" | ||
version = "0.2.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr Maxim Orlovsky <[email protected]>"] | ||
description = "C library for building descriptor-based bitcoin wallets" | ||
|
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 = "psbt" | ||
version = "0.5.0-alpha.2" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Partially signed bitcoin transaction v0-2 library (bip174, bip370, bip371)" | ||
|
@@ -15,5 +15,5 @@ exclude = [] | |
[dependencies] | ||
amplify = "3.8.2" | ||
bitcoin = "0.27.0" | ||
descriptors = { version = "0.5.0-alpha.1", path = "../descriptors" } | ||
bitcoin_scripts = { version = "0.5.0-alpha.1", path = "../scripts" } | ||
descriptors = { version = "0.5.0", path = "../descriptors" } | ||
bitcoin_scripts = { version = "0.5.0", path = "../scripts" } |
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_scripts" | ||
version = "0.5.0-alpha.3" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin extended script types" | ||
|
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 = "slip132" | ||
version = "0.5.0-beta.1" | ||
version = "0.5.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Bitcoin SLIP-132 standard implementation (parsing custom xpub/xpriv key formats)" | ||
|