/ bin / vanityaddr / Cargo.toml
Cargo.toml
 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  
11  [dependencies]
12  arg = {git = "https://github.com/parazyd/arg"}
13  bs58 = "0.5.1"
14  ctrlc = "3.4.7"
15  darkfi = {path = "../../", features = ["util"]}
16  darkfi-sdk = {path = "../../src/sdk"}
17  darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
18  rand = "0.8.5"
19  rayon = "1.10.0"
20  
21  [lints]
22  workspace = true