Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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", "zk"]}
  12. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  13. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  14. libc = "0.2.150"
  15. # Event Graph DB
  16. sled = "0.34.7"
  17. # TLS
  18. async-rustls = "0.4.1"
  19. async-trait = "0.1.74"
  20. futures = "0.3.29"
  21. rustls-pemfile = "2.0.0-alpha.1"
  22. # Crypto
  23. blake3 = "1.5.0"
  24. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  25. rand = "0.8.5"
  26. # Misc
  27. log = "0.4.20"
  28. url = "2.4.1"
  29. # Encoding and parsing
  30. bs58 = "0.5.0"
  31. toml = "0.8.8"
  32. # Daemon
  33. easy-parallel = "3.3.1"
  34. signal-hook-async-std = "0.2.2"
  35. signal-hook = "0.3.17"
  36. simplelog = "0.12.1"
  37. smol = "1.3.0"
  38. # Argument parsing
  39. serde = {version = "1.0.192", features = ["derive"]}
  40. structopt = "0.3.26"
  41. structopt-toml = "0.5.1"