forked from infincia/bip39-rs
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves #27. Not only should anyhow generally not be used in libraries, it adds no value here (it arguably makes error handling from this library worse actually). Bumps version to 2.0 as this is a breaking API change :/ Co-authored-by: Maciej Hirsz <[email protected]>
- Loading branch information
1 parent
2175c62
commit a2e3459
Showing
3 changed files
with
8 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tiny-bip39" | ||
version = "1.0.1" | ||
version = "2.0.0" | ||
authors = [ | ||
"Stephen Oliver <[email protected]>", | ||
"Maciej Hirsz <[email protected]>", | ||
|
@@ -32,7 +32,6 @@ default-langs = ["chinese-simplified", "chinese-traditional", "french", "italian | |
default = ["default-langs", "rand"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.57" | ||
thiserror = "1.0.31" | ||
rustc-hash = "1.1.0" | ||
sha2 = "0.10.2" | ||
|
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