Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "gg"
  3. version = "0.4.1"
  4. description = """\
  5. Genesis Generator, a command-line utility to generate,\
  6. display and verify a bs58 encoded Darkfi genesis block\
  7. """
  8. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. license = "AGPL-3.0-only"
  11. edition = "2021"
  12. [workspace]
  13. [dependencies]
  14. # Darkfi
  15. darkfi = {path = "../../../", features = ["validator"]}
  16. darkfi_money_contract = {path = "../../../src/contract/money", features = ["no-entrypoint", "client"]}
  17. darkfi-contract-test-harness = {path = "../../../src/contract/test-harness"}
  18. darkfi-sdk = {path = "../../../src/sdk"}
  19. darkfi-serial = {path = "../../../src/serial"}
  20. # Misc
  21. async-std = {version = "1.12.0", features = ["attributes"]}
  22. bs58 = "0.5.1"
  23. clap = {version = "4.4.11", features = ["derive"]}
  24. sled = "0.34.7"
  25. [patch.crates-io]
  26. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  27. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}
  28. blake2b_simd = {git="https://github.com/parazyd/blake2_simd", branch="impl-common"}