Cargo.toml 410 B

1234567891011121314151617181920212223242526
  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. dchat = {path = "../dchat"}
  9. # Async
  10. futures = "0.3.0"
  11. async-std = "1"
  12. async-executor = "1.4.1"
  13. async-channel = "1.6.1"
  14. easy-parallel = "3.2.0"
  15. smol = "1.2.5"
  16. num_cpus = "1.13.1"
  17. #Misc
  18. url = "2.2.2"
  19. log = "0.4.17"
  20. simplelog = "0.12.0"