bin: Implement vanity address search tool as threadpool experiment.

This commit is contained in:
parazyd
2022-03-14 22:12:42 +01:00
parent e019472a05
commit c89db12c71
5 changed files with 132 additions and 22 deletions

16
bin/vanityaddr/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "vanityaddr"
version = "0.3.0"
edition = "2021"
[dependencies]
clap = {version = "3.1.6", features = ["derive"]}
bs58 = "0.4.0"
num_cpus = "1.13.1"
rand = "0.8.5"
rayon = "1.5.1"
serde_json = "1.0.79"
[dependencies.darkfi]
path = "../../"
features = ["crypto", "util"]