Cargo.toml 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "ircd"
  3. description = "P2P IRC daemon"
  4. version = "0.4.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. [dependencies]
  11. darkfi = {path = "../../", features = ["net", "rpc", "bs58"]}
  12. darkfi-serial = {path = "../../src/serial"}
  13. # Async
  14. smol = "1.2.5"
  15. futures = "0.3.24"
  16. futures-rustls = "0.22.2"
  17. rustls-pemfile = "1.0.1"
  18. async-std = "1.12.0"
  19. async-trait = "0.1.57"
  20. easy-parallel = "3.2.0"
  21. async-recursion = "1.0.0"
  22. # Crypto
  23. crypto_box = "0.8.1"
  24. rand = "0.8.5"
  25. # Misc
  26. clap = {version = "3.2.20", features = ["derive"]}
  27. log = "0.4.17"
  28. simplelog = "0.12.0"
  29. fxhash = "0.2.1"
  30. ctrlc = { version = "3.2.3", features = ["termination"] }
  31. url = "2.3.1"
  32. chrono = "0.4.22"
  33. ripemd = "0.1.3"
  34. # Encoding and parsing
  35. serde_json = "1.0.85"
  36. serde = {version = "1.0.145", features = ["derive"]}
  37. structopt = "0.3.26"
  38. structopt-toml = "0.5.1"
  39. bs58 = "0.4.0"
  40. toml = "0.5.9"
  41. hex = "0.4.3"