Cargo.toml 902 B

1234567891011121314151617181920212223242526272829303132333435363738
  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", "raft"]}
  12. # Async
  13. smol = "1.2.5"
  14. futures = "0.3.21"
  15. futures-rustls = "0.22.1"
  16. async-std = "1.11.0"
  17. async-trait = "0.1.53"
  18. async-channel = "1.6.1"
  19. async-executor = "1.4.1"
  20. easy-parallel = "3.2.0"
  21. # Crypto
  22. rand = "0.8.5"
  23. # Misc
  24. clap = {version = "3.1.8", features = ["derive"]}
  25. log = "0.4.16"
  26. simplelog = "0.12.0-alpha1"
  27. fxhash = "0.2.1"
  28. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  29. url = "2.2.2"
  30. # Encoding and parsing
  31. serde_json = "1.0.79"
  32. serde = {version = "1.0.136", features = ["derive"]}
  33. structopt = "0.3.26"
  34. structopt-toml = "0.5.0"