Cargo.toml 958 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 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-contract-test-harness = {path = "../../../src/contract/test-harness"}
  17. darkfi-serial = {path = "../../../src/serial"}
  18. # Misc
  19. anyhow = "1.0.75"
  20. async-std = {version = "1.12.0", features = ["attributes"]}
  21. bs58 = "0.5.0"
  22. clap = {version = "4.4.1", features = ["derive"]}
  23. sled = "0.34.7"
  24. [patch.crates-io]
  25. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  26. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}
  27. blake2b_simd = {git="https://github.com/parazyd/blake2_simd", branch="impl-common"}