Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. [package]
  2. name = "dao"
  3. version = "0.4.1"
  4. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  5. license = "AGPL-3.0-only"
  6. edition = "2021"
  7. [workspace]
  8. members = [
  9. "contract/money",
  10. "contract/dao",
  11. ]
  12. [dependencies]
  13. dao-contract = {path = "contract/dao"}
  14. money-contract = {path = "contract/money"}
  15. darkfi-sdk = { path = "../../src/sdk" }
  16. darkfi-serial = { path = "../../src/serial" }
  17. darkfi = { path = "../../", features = ["wasm-runtime"] }
  18. sled = "0.34.7"
  19. # Async
  20. smol = "1.3.0"
  21. futures = "0.3.26"
  22. async-std = {version = "1.12.0", features = ["attributes"]}
  23. async-trait = "0.1.64"
  24. async-channel = "1.8.0"
  25. async-executor = "1.5.0"
  26. easy-parallel = "3.2.0"
  27. # Misc
  28. log = "0.4.17"
  29. num_cpus = "1.15.0"
  30. simplelog = "0.12.0"
  31. thiserror = "1.0.38"
  32. # Crypto
  33. incrementalmerkletree = "0.3.0"
  34. pasta_curves = "0.4.1"
  35. halo2_gadgets = "0.2.0"
  36. halo2_proofs = "0.2.0"
  37. rand = "0.8.5"
  38. chacha20poly1305 = "0.10.1"
  39. group = "0.13.0"
  40. # Encoding and parsing
  41. serde_json = "1.0.91"
  42. bs58 = "0.4.0"
  43. fxhash = "0.2.1"
  44. # Utilities
  45. lazy_static = "1.4.0"
  46. url = "2.3.1"
  47. env_logger = "0.10.0"