Skip to content

Commit 3f792bf

Browse files
committed
Upgrade of all dependencies.
1 parent ad60286 commit 3f792bf

File tree

3 files changed

+226
-200
lines changed

3 files changed

+226
-200
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "encrypt38"
3-
version = "1.1.6"
3+
version = "1.1.7"
44
authors = ["ceca69ec8e1bcad6c6d79e1dcf7214ff67766580a62b7d19a6fb094c97b4f2dc"]
5-
edition = "2018"
5+
edition = "2021"
66
include = [
77
"src/**/*",
88
"Cargo.toml",
@@ -26,10 +26,10 @@ license = "Apache-2.0"
2626
readme = "README.md"
2727

2828
[dependencies]
29-
bech32 = "0.8.1"
30-
bip38 = "1.1.0"
31-
bs58 = "0.4.0"
32-
clap = "2.33.3"
33-
ripemd160 = "0.9.1"
34-
secp256k1 = "0.20.3"
35-
sha2 = "0.9.5"
29+
bip38 = "1.1.1"
30+
bitcoin-bech32 = "0.13.0"
31+
bs58 = "0.5.1"
32+
clap = { version = "4.5.4", features = ["cargo"] }
33+
ripemd = "0.1.3"
34+
secp256k1 = "0.29.0"
35+
sha2 = "0.10.8"

README.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -66,26 +66,22 @@ KwYgW8gcxj1JWJXhPSu4Fqwzfhp5Yfi42mdYmMa4XqK7NJxXUSK7
6666
## Help
6767

6868
```shell
69-
encrypt38 1.1.6
7069
Insert encrypted, hexadecimal or wif private key and passphrase to decrypt or
7170
encrypt accordingly. Insert only passphrase to create an encrypted private key
7271
using elliptic curve multiplication (and pseudo-random number generation).
7372

74-
USAGE:
75-
encrypt38 [FLAGS] [OPTIONS] -p <passphrase> [PRIVATE_KEY]
73+
Usage: encrypt38 [OPTIONS] -p <passphrase> [PRIVATE_KEY]
7674

77-
FLAGS:
78-
-h, --help Prints help information
79-
-u, --uncompressed Encrypted private key to generate uncompressed address
80-
-V, --version Prints version information
81-
-v, --verbose Show possible address and public key when decrypting
75+
Arguments:
76+
[PRIVATE_KEY] Hexadecimal, wif or encrypted private key
8277

83-
OPTIONS:
84-
-p <passphrase> Used to encrypt and decrypt the private key (required)
85-
-s <separator> Specify character (or string) to separate verbose result
86-
87-
ARGS:
88-
<PRIVATE_KEY> Hexadecimal, wif or encrypted private key
78+
Options:
79+
-s <separator> Specify character (or string) to separate verbose result
80+
-p <passphrase> Used to encrypt and decrypt the private key (required)
81+
-u, --uncompressed Encrypted private key to generate uncompressed address
82+
-v, --verbose Show possible address and public key when decrypting
83+
-h, --help Print help
84+
-V, --version Print version
8985
```
9086

9187
## Installation

0 commit comments

Comments
 (0)