Skip to content

Commit

Permalink
Upgrade of all dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceca69ec committed May 18, 2024
1 parent ee3a960 commit 5e538c3
Show file tree
Hide file tree
Showing 4 changed files with 913 additions and 419 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "mnemonic39"
version = "1.0.5"
version = "1.0.6"
authors = ["ceca69ec8e1bcad6c6d79e1dcf7214ff67766580a62b7d19a6fb094c97b4f2dc"]
edition = "2018"
edition = "2021"
include = [
"src/**/*",
"Cargo.toml",
Expand All @@ -25,11 +25,11 @@ license = "Apache-2.0"
readme = "README.md"

[dependencies]
bs58 = "0.4.0"
clap = "2.33.3"
hmac = "0.11.0"
itertools = "0.10.1"
pbkdf2 = { version = "0.8.0", default-features = false }
sha2 = "0.9.5"
strsim = "0.10.0"
unicode-normalization = "0.1.19"
bs58 = "0.5.1"
clap = { version = "4.5.4", features = ["cargo"] }
hmac = "0.12.1"
itertools = "0.12.1"
pbkdf2 = { version = "0.12.2", default-features = false }
sha2 = "0.10.8"
strsim = "0.11.1"
unicode-normalization = "0.1.23"
44 changes: 20 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,35 +86,31 @@ zprvAWgYBBk7JR8GjQdaFzTSaQeJaCj3Xvu99ED9J5MvxumnvSSXho8ZvNXDKxNqU3MRCbdJSZoHEAVk
## Help

```shell
mnemonic39 1.0.5
Enter optional language and hexadecimal entropy with optional passphrase or
enter a list of mnemonic words with optional passphrase to see information
about it. It can show a list of valid last words to fulfil a list of mnemonic
words missing the last one. Generate mnemonic using a list of valid words.

USAGE:
mnemonic39 [FLAGS] [OPTIONS] <DATA>...

FLAGS:
-c, --chinese Mnemonic with chinese simplified words
-e, --english Mnemonic with english words
-f, --french Mnemonic with french words
-g, --generate Generate valid mnemonics permuting words
-h, --help Prints help information
-i, --italian Mnemonic with italian words
-j, --japanese Mnemonic with japanese words
-k, --korean Mnemonic with korean words
-o, --portuguese Mnemonic with portuguese words
-s, --spanish Mnemonic with spanish words
-t, --traditional Mnemonic with chinese traditional words
-V, --version Prints version information
-z, --czech Mnemonic with czech words

OPTIONS:
-p <passphrase> optional passphrase to be used with the mnemonic

ARGS:
<DATA>... hexadecimal entropy, seed or a list of mnemonic words
Usage: mnemonic39 [OPTIONS] [DATA]...

Arguments:
[DATA]... hexadecimal entropy, seed or a list of mnemonic words

Options:
-c, --chinese Mnemonic with chinese simplified words
-e, --english Mnemonic with english words
-f, --french Mnemonic with french words
-g, --generate Generate valid mnemonics permuting words
-i, --italian Mnemonic with italian words
-j, --japanese Mnemonic with japanese words
-k, --korean Mnemonic with korean words
-o, --portuguese Mnemonic with portuguese words
-p <passphrase> optional passphrase to be used with the mnemonic
-s, --spanish Mnemonic with spanish words
-t, --traditional Mnemonic with chinese traditional words
-z, --czech Mnemonic with czech words
-h, --help Print help
-V, --version Print version
```

## Installation
Expand Down
Loading

0 comments on commit 5e538c3

Please sign in to comment.