Cargo.toml 671 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "p2pdebug"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://github.com/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. darkfi = {path = "../../", features = ["net", "rpc"]}
  12. # Async
  13. smol = "1.3.0"
  14. futures = "0.3.28"
  15. async-std = "1.12.0"
  16. async-trait = "0.1.71"
  17. async-channel = "1.9.0"
  18. async-executor = "1.5.1"
  19. easy-parallel = "3.3.0"
  20. # Crypto
  21. rand = "0.8.5"
  22. # Misc
  23. clap = {version = "4.3.11", features = ["derive"]}
  24. log = "0.4.19"
  25. simplelog = "0.12.1"
  26. fxhash = "0.2.1"
  27. url = "2.4.0"
  28. # Encoding and parsing
  29. serde_json = "1.0.100"