Cargo.toml 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "ircd"
  3. description = "P2P IRC daemon"
  4. version = "0.3.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. keywords = []
  11. categories = []
  12. [dependencies]
  13. darkfi = {path = "../../", features = ["net", "rpc"]}
  14. # Async
  15. smol = "1.2.5"
  16. futures = "0.3.21"
  17. futures-rustls = "0.22.1"
  18. rustls-pemfile = "1.0.1"
  19. async-std = "1.12.0"
  20. async-trait = "0.1.57"
  21. async-channel = "1.6.1"
  22. async-executor = "1.4.1"
  23. easy-parallel = "3.2.0"
  24. # Crypto
  25. crypto_box = "0.7.2"
  26. rand = "0.8.5"
  27. # Misc
  28. clap = {version = "3.2.16", features = ["derive"]}
  29. log = "0.4.17"
  30. simplelog = "0.12.0"
  31. fxhash = "0.2.1"
  32. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  33. url = "2.2.2"
  34. ringbuffer = "0.8.4"
  35. # Encoding and parsing
  36. serde_json = "1.0.83"
  37. serde = {version = "1.0.142", features = ["derive"]}
  38. structopt = "0.3.26"
  39. structopt-toml = "0.5.1"
  40. bs58 = "0.4.0"
  41. toml = "0.5.9"