Cargo.toml 669 B

12345678910111213141516171819202122
  1. [package]
  2. name = "vanityaddr"
  3. version = "0.5.0"
  4. homepage = "https://dark.fi"
  5. description = "Vanity address generation tool for DarkFi keypairs, contract IDs, and token IDs"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://codeberg.org/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. arg = {git = "https://github.com/parazyd/arg"}
  12. bs58 = "0.5.1"
  13. ctrlc = "3.5.1"
  14. darkfi = {path = "../../", features = ["util"]}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  17. rand = "0.8.5"
  18. rayon = "1.11.0"
  19. [lints]
  20. workspace = true