Cargo.toml 697 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "daod"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../"
  7. features = ["rpc", "crypto", "tx", "node"]
  8. [dependencies]
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.21"
  12. async-std = {version = "1.12.0", features = ["attributes"]}
  13. async-trait = "0.1.57"
  14. async-channel = "1.6.1"
  15. async-executor = "1.4.1"
  16. easy-parallel = "3.2.0"
  17. # Misc
  18. log = "0.4.17"
  19. num_cpus = "1.13.1"
  20. simplelog = "0.12.0"
  21. url = "2.2.2"
  22. thiserror = "1.0.32"
  23. once_cell = "1.13.1"
  24. # Crypto
  25. incrementalmerkletree = "0.3.0"
  26. pasta_curves = "0.4.0"
  27. halo2_gadgets = "0.2.0"
  28. halo2_proofs = "0.2.0"
  29. rand = "0.8.5"
  30. crypto_api_chachapoly = "0.5.0"
  31. group = "0.12.0"
  32. # Encoding and parsing
  33. serde_json = "1.0.83"