Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "darkirc"
  3. description = "P2P IRC daemon"
  4. version = "0.4.2"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../", features = ["async-daemonize", "event-graph", "net", "util", "system", "rpc"]}
  12. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  13. libc = "0.2.150"
  14. # Event Graph DB
  15. sled = "0.34.7"
  16. # TLS
  17. async-rustls = "0.4.1"
  18. async-trait = "0.1.74"
  19. futures = "0.3.29"
  20. rustls-pemfile = "2.0.0-alpha.1"
  21. # Crypto
  22. blake3 = "1.5.0"
  23. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  24. rand = "0.8.5"
  25. # Misc
  26. log = "0.4.20"
  27. url = "2.4.1"
  28. # Encoding and parsing
  29. bs58 = "0.5.0"
  30. toml = "0.8.8"
  31. # Daemon
  32. easy-parallel = "3.3.1"
  33. signal-hook-async-std = "0.2.2"
  34. signal-hook = "0.3.17"
  35. simplelog = "0.12.1"
  36. smol = "1.3.0"
  37. # Argument parsing
  38. serde = {version = "1.0.192", features = ["derive"]}
  39. structopt = "0.3.26"
  40. structopt-toml = "0.5.1"