Cargo.toml 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "daod"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies]
  6. darkfi = {path = "../../../", features = ["rpc", "crypto", "tx", "node"]}
  7. darkfi-sdk = {path = "../../../src/sdk"}
  8. darkfi-serial = {path = "../../../src/serial"}
  9. # Async
  10. smol = "1.2.5"
  11. futures = "0.3.24"
  12. async-std = {version = "1.12.0", features = ["attributes"]}
  13. async-trait = "0.1.57"
  14. async-channel = "1.7.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. thiserror = "1.0.37"
  22. # Crypto
  23. incrementalmerkletree = "0.3.0"
  24. pasta_curves = "0.4.0"
  25. halo2_gadgets = "0.2.0"
  26. halo2_proofs = "0.2.0"
  27. rand = "0.8.5"
  28. crypto_api_chachapoly = "0.5.0"
  29. group = "0.12.0"
  30. # Encoding and parsing
  31. serde_json = "1.0.85"
  32. bs58 = "0.4.0"
  33. fxhash = "0.2.1"
  34. # Utilities
  35. lazy_static = "1.4.0"
  36. url = "2.3.1"