Cargo.toml 1006 B

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