-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 988 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "bip39-cli"
version = "0.1.0"
edition = "2021"
description = "Command-line tool for BIP39 mnemonic operations using the trusted rust-bitcoin library"
license = "CC0-1.0"
repository = "https://github.com/robcohen/bip39-cli"
keywords = ["bip39", "mnemonic", "bitcoin", "crypto", "cli"]
categories = ["command-line-utilities", "cryptography"]
[[bin]]
name = "bip39"
path = "src/main.rs"
[dependencies]
bip39 = { version = "2.1.0", features = ["all-languages"] }
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
rand = "0.8"
hex = "0.4"
zeroize = "1.7"
rpassword = "7.0"
sha2 = "0.10"
console = "0.15"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.0"
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[[bench]]
name = "bip39_bench"
harness = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true