Cargo.toml 980 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "daod"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi DAO daemon"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["rpc", "crypto", "tx"]}
  12. darkfi-sdk = {path = "../../../src/sdk"}
  13. darkfi-serial = {path = "../../../src/serial"}
  14. # Async
  15. smol = "1.3.0"
  16. futures = "0.3.26"
  17. async-std = {version = "1.12.0", features = ["attributes"]}
  18. async-trait = "0.1.64"
  19. async-channel = "1.8.0"
  20. async-executor = "1.5.0"
  21. easy-parallel = "3.2.0"
  22. # Misc
  23. log = "0.4.17"
  24. num_cpus = "1.15.0"
  25. simplelog = "0.12.0"
  26. thiserror = "1.0.38"
  27. # Crypto
  28. halo2_gadgets = "0.2.0"
  29. halo2_proofs = "0.2.0"
  30. rand = "0.8.5"
  31. chacha20poly1305 = "0.10.1"
  32. pasta_curves = "0.4.1"
  33. incrementalmerkletree = "0.3.0"
  34. # Encoding and parsing
  35. serde_json = "1.0.91"
  36. bs58 = "0.4.0"
  37. # Utilities
  38. lazy_static = "1.4.0"
  39. url = "2.3.1"