Cargo.toml 760 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "client"
  3. version = "0.0.1"
  4. description = "Basic client for wasm hello world example."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. # The contract
  12. wasm_hello_world = {path = "../", features = [ "client" ]}
  13. # Darkfi
  14. darkfi = {path = "../../../", features = ["tx", "rpc"]}
  15. darkfi-sdk = {path = "../../../src/sdk"}
  16. darkfi-serial = "0.5.0"
  17. # Misc
  18. clap = {version = "4.4.11", features = ["derive"]}
  19. rand = "0.8.5"
  20. smol = "2.0.2"
  21. url = "2.5.7"
  22. [patch.crates-io]
  23. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v031"}
  24. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v031"}