Cargo.toml 943 B

123456789101112131415161718192021222324252627282930
  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.80"
  20. async-std = {version = "1.12.0", features = ["attributes"]}
  21. clap = {version = "4.5.2", features = ["derive"]}
  22. sled = "0.34.7"
  23. [patch.crates-io]
  24. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  25. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}
  26. blake2b_simd = {git="https://github.com/parazyd/blake2_simd", branch="impl-common"}