Cargo.toml 914 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "dao-example"
  3. version = "0.4.1"
  4. edition = "2021"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. license = "AGPL-3.0-only"
  7. [dependencies]
  8. darkfi = {path = "../../", features = ["rpc", "crypto", "tx"]}
  9. darkfi-serial = {path = "../../src/serial"}
  10. darkfi-sdk = {path = "../../src/sdk"}
  11. # Async
  12. smol = "1.3.0"
  13. futures = "0.3.28"
  14. async-std = {version = "1.12.0", features = ["attributes"]}
  15. async-trait = "0.1.68"
  16. async-channel = "1.8.0"
  17. async-executor = "1.5.1"
  18. easy-parallel = "3.3.0"
  19. # Misc
  20. log = "0.4.17"
  21. num_cpus = "1.15.0"
  22. simplelog = "0.12.1"
  23. thiserror = "1.0.40"
  24. # Crypto
  25. incrementalmerkletree = "0.3.1"
  26. pasta_curves = "0.5.1"
  27. halo2_gadgets = "0.3.0"
  28. halo2_proofs = "0.3.0"
  29. rand = "0.8.5"
  30. chacha20poly1305 = "0.10.1"
  31. group = "0.13.0"
  32. # Encoding and parsing
  33. serde_json = "1.0.96"
  34. bs58 = "0.4.0"
  35. fxhash = "0.2.1"
  36. # Utilities
  37. lazy_static = "1.4.0"
  38. url = "2.3.1"
  39. env_logger = "0.10.0"