Cargo.toml 798 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "crypsinous_playground"
  3. version = "0.1.0"
  4. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  5. license = "AGPL-3.0-only"
  6. edition = "2021"
  7. [workspace]
  8. [dependencies]
  9. darkfi = {path = "../../../", features = ["crypto", "node"]}
  10. darkfi-sdk = {path = "../../../src/sdk"}
  11. dashu = { version = "0.2.0", git = "https://github.com/ertosns/dashu" }
  12. halo2_gadgets = "0.2.0"
  13. halo2_proofs = "0.2.0"
  14. incrementalmerkletree = "0.3.0"
  15. pasta_curves = "0.4.1"
  16. # Async
  17. async-std = "1.12.0"
  18. async-trait = "0.1.59"
  19. ctrlc = { version = "3.2.3", features = ["termination"] }
  20. easy-parallel = "3.2.0"
  21. smol = "1.2.5"
  22. # Argument parsing
  23. serde = "1.0.148"
  24. serde_derive = "1.0.148"
  25. structopt = "0.3.26"
  26. structopt-toml = "0.5.1"
  27. # Misc
  28. blake3 = "1.3.3"
  29. log = "0.4.17"
  30. simplelog = "0.12.0"
  31. rand = "0.8.5"