Cargo.toml 388 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "dchat_seed"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "Seed node for dchat"
  6. [dependencies]
  7. darkfi = {path = "../../", features = ["net", "rpc"]}
  8. # Async
  9. futures = "0.3.21"
  10. async-std = "1.12.0"
  11. async-executor = "1.4.1"
  12. async-channel = "1.6.1"
  13. easy-parallel = "3.2.0"
  14. smol = "1.2.5"
  15. num_cpus = "1.13.1"
  16. #Misc
  17. url = "2.2.2"
  18. log = "0.4.17"
  19. simplelog = "0.12.0"