Cargo.toml 716 B

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