Cargo.toml 980 B

12345678910111213141516171819202122232425262728293031
  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 base64 encoded Darkfi genesis block\
  7. """
  8. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  9. repository = "https://codeberg.org/darkrenaissance/darkfi"
  10. license = "AGPL-3.0-only"
  11. edition = "2021"
  12. [workspace]
  13. [dependencies]
  14. # Darkfi
  15. darkfi = {path = "../../../", features = ["bs58", "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. bs58 = "0.5.1"
  22. clap = {version = "4.4.11", features = ["derive"]}
  23. sled-overlay = "0.1.20"
  24. smol = "2.0.2"
  25. [patch.crates-io]
  26. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v032"}
  27. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v032"}