forked from rust-bitcoin/rust-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add DIP 14 derivation and DIP 9 known derivation Paths. (#39)
* small fmt * added dip14 support * more work * more work * added key type * chore: clean x11 into feature * update version * fixes * more fixes * work on derivation * update of version
- Loading branch information
1 parent
003b1ae
commit 6a0ec16
Showing
15 changed files
with
1,291 additions
and
66 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 = "dashcore" | ||
version = "0.30.0" | ||
version = "0.32.0" | ||
authors = [ | ||
"Samuel Westrich <[email protected]>", | ||
"Anton Suprunchuk <[email protected]>", | ||
|
@@ -28,6 +28,8 @@ secp-lowmemory = ["secp256k1/lowmemory"] | |
secp-recovery = ["secp256k1/recovery"] | ||
signer = ["secp-recovery", "rand"] | ||
core-block-hash-use-x11 = ["dashcore_hashes/x11"] | ||
bls = ["bls-signatures"] | ||
eddsa = ["ed25519-dalek"] | ||
|
||
# At least one of std, no-std must be enabled. | ||
# | ||
|
@@ -58,14 +60,20 @@ hex_lit = "0.1.1" | |
anyhow = { version= "1.0" } | ||
hex = { version= "0.4" } | ||
bincode = { version= "2.0.0-rc.3", optional = true } | ||
bitflags = "2.6.0" | ||
bls-signatures = { git = "https://github.com/dashpay/bls-signatures", tag = "1.3.3", optional = true } | ||
serde_repr = "0.1.19" | ||
strum = { version = "0.26", features = ["derive"] } | ||
lazy_static = "1.5.0" | ||
ed25519-dalek = { version = "2.1", features = ["rand_core"], optional = true } | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0.96" | ||
serde_test = "1.0.19" | ||
serde_derive = "1.0.103" | ||
secp256k1 = { features = [ "recovery", "rand", "hashes" ], version="0.30.0" } | ||
bip39 = "2.0.0" | ||
bincode = "1.3.1" | ||
bincode_test = {package = "bincode", version= "1.3.3" } | ||
|
||
[[example]] | ||
name = "bip32" | ||
|
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
Oops, something went wrong.