Cargo.toml 701 B

1234567891011121314151617181920212223242526272829303132333435363738
  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://codeberg.org/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 = "2.0.2"
  14. futures = "0.3.31"
  15. async-std = "1.13.0"
  16. async-trait = "0.1.86"
  17. async-channel = "2.3.1"
  18. async-executor = "1.13.1"
  19. easy-parallel = "3.3.1"
  20. # Crypto
  21. rand = "0.8.5"
  22. # Misc
  23. clap = {version = "4.4.11", features = ["derive"]}
  24. log = "0.4.25"
  25. simplelog = "0.12.2"
  26. fxhash = "0.2.1"
  27. url = "2.5.4"
  28. # Encoding and parsing
  29. serde_json = "1.0.138"
  30. [lints]
  31. workspace = true