Cargo.toml 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "irc-raft"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "P2P IRC daemon With Raft Consensus"
  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.12.0"
  17. async-trait = "0.1.57"
  18. async-channel = "1.6.1"
  19. async-executor = "1.4.1"
  20. easy-parallel = "3.2.0"
  21. # Crypto
  22. crypto_box = "0.7.2"
  23. rand = "0.8.5"
  24. # Misc
  25. clap = {version = "3.2.16", features = ["derive"]}
  26. log = "0.4.17"
  27. simplelog = "0.12.0"
  28. fxhash = "0.2.1"
  29. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  30. url = "2.2.2"
  31. # Encoding and parsing
  32. serde_json = "1.0.83"
  33. serde = {version = "1.0.142", features = ["derive"]}
  34. structopt = "0.3.26"
  35. structopt-toml = "0.5.1"
  36. bs58 = "0.4.0"
  37. toml = "0.5.9"