-
Notifications
You must be signed in to change notification settings - Fork 34
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
Showing
15 changed files
with
161 additions
and
173 deletions.
There are no files selected for viewing
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,7 +1,9 @@ | ||
target/ | ||
Cargo.lock | ||
|
||
pkg/ | ||
pkg-node/ | ||
**/*.rs.bk | ||
Cargo.lock | ||
tarpaulin-report.html | ||
node_modules | ||
.vscode |
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,31 +1,31 @@ | ||
[package] | ||
name = "coins-bip39" | ||
version = "0.8.6" | ||
authors = ["Rohit Narurkar <[email protected]>", "James Prestwich <[email protected]>", "0xYYY <[email protected]>"] | ||
authors = [ | ||
"Rohit Narurkar <[email protected]>", | ||
"James Prestwich <[email protected]>", | ||
"0xYYY <[email protected]>", | ||
] | ||
edition = "2018" | ||
description = "Bip39 in Rust" | ||
repository = "https://github.com/summa-tx/bitcoins-rs" | ||
repository = "https://github.com/summa-tx/coins" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
bitvec = "0.17.4" | ||
coins-bip32 = { version = "0.8.3", path = "../bip32" } | ||
|
||
bitvec = "1.0" | ||
hmac = "0.12" | ||
pbkdf2 = "0.12" | ||
rand = "0.8.4" | ||
rand = "0.8" | ||
sha2 = "0.10" | ||
thiserror = "1.0" | ||
|
||
# used by all wordlists | ||
once_cell = { version = "1.17.1", optional = true} | ||
once_cell = { version = "1.17", optional = true } | ||
|
||
[dev-dependencies] | ||
hex = "0.4.2" | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom] | ||
version = "0.2.3" | ||
default-features = false | ||
features=["js"] | ||
hex = "0.4" | ||
|
||
[features] | ||
default = ["all-langs"] | ||
|
@@ -50,4 +50,4 @@ italian = ["dep:once_cell"] | |
japanese = ["dep:once_cell"] | ||
korean = ["dep:once_cell"] | ||
portuguese = ["dep:once_cell"] | ||
spanish = ["dep:once_cell"] | ||
spanish = ["dep:once_cell"] |
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 |
---|---|---|
|
@@ -4,21 +4,21 @@ version = "0.8.3" | |
authors = ["James Prestwich <[email protected]>"] | ||
edition = "2018" | ||
description = "Core library for coins-bip32 and coins-bip39" | ||
repository = "https://github.com/summa-tx/bitcoins-rs" | ||
repository = "https://github.com/summa-tx/coins" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
bech32 = "0.7.2" | ||
hex = "0.4.2" | ||
base64 = "0.21" | ||
bech32 = "0.9" | ||
bs58 = { version = "0.5", features = ["check"] } | ||
hex = "0.4" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_derive = "1.0" | ||
thiserror = "1.0" | ||
base64 = "0.21.0" | ||
serde_derive = "1.0.106" | ||
serde = { version = "1.0.106", features = ["derive"] } | ||
bs58 = { version = "0.4.0", features = ["check"] } | ||
|
||
# update in parallel | ||
generic-array = "0.14.4" | ||
digest = "0.10" | ||
generic-array = "0.14" | ||
ripemd = "0.1" | ||
sha2 = "0.10" | ||
sha3 = "0.10" | ||
ripemd = "0.1" |
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.