Cargo.toml 572 B

1234567891011121314151617181920
  1. [package]
  2. name = "vanityaddr"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Vanity address generation tool for DarkFi keypairs and token IDs"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  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 = "4.0.29", features = ["derive"]}
  13. ctrlc = "3.2.3"
  14. darkfi = {path = "../../", features = ["crypto"]}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. indicatif = "0.17.2"
  17. num_cpus = "1.14.0"
  18. rand = "0.8.5"
  19. rayon = "1.6.0"