Cargo.toml 985 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. futures-rustls = "0.22.1"
  16. rustls-pemfile = "1.0.0"
  17. async-std = "1.12.0"
  18. async-trait = "0.1.56"
  19. async-channel = "1.6.1"
  20. async-executor = "1.4.1"
  21. easy-parallel = "3.2.0"
  22. # Crypto
  23. crypto_box = "0.7.2"
  24. rand = "0.8.5"
  25. # Misc
  26. clap = {version = "3.2.8", features = ["derive"]}
  27. log = "0.4.17"
  28. simplelog = "0.12.0"
  29. fxhash = "0.2.1"
  30. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  31. url = "2.2.2"
  32. ringbuffer = "0.8.4"
  33. # Encoding and parsing
  34. serde_json = "1.0.82"
  35. serde = {version = "1.0.138", features = ["derive"]}
  36. structopt = "0.3.26"
  37. structopt-toml = "0.5.0"
  38. bs58 = "0.4.0"
  39. toml = "0.5.9"