Cargo.toml 655 B

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