Cargo.toml 608 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "p2pdebug"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. repository = "https://github.com/darkrenaissance/darkfi"
  6. license = "AGPL-3.0-only"
  7. edition = "2021"
  8. [workspace]
  9. [dependencies]
  10. darkfi = {path = "../../", features = ["net2"]}
  11. # Async
  12. smol = "1.2.5"
  13. futures = "0.3.21"
  14. async-std = "1.11.0"
  15. async-trait = "0.1.53"
  16. async-channel = "1.6.1"
  17. async-executor = "1.4.1"
  18. easy-parallel = "3.2.0"
  19. # Crypto
  20. rand = "0.8.5"
  21. # Misc
  22. clap = {version = "3.1.10", features = ["derive"]}
  23. log = "0.4.16"
  24. simplelog = "0.12.0"
  25. fxhash = "0.2.1"
  26. url = "2.2.2"
  27. # Encoding and parsing
  28. serde_json = "1.0.79"