Cargo.toml 500 B

12345678910111213141516171819
  1. [package]
  2. name = "vanityaddr"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Vanity address generation tool for DarkFi keypairs."
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. bs58 = "0.4.0"
  12. clap = {version = "3.2.20", features = ["derive"]}
  13. ctrlc = "3.2.3"
  14. darkfi = {path = "../../", features = ["crypto"]}
  15. indicatif = "0.17.1"
  16. num_cpus = "1.13.1"
  17. rand = "0.8.5"
  18. rayon = "1.5.3"