Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [package]
  2. name = "darkirc"
  3. description = "P2P IRC daemon"
  4. version = "0.5.0"
  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. [lib]
  11. name = "darkirc"
  12. crate-type = ["cdylib"]
  13. path = "src/lib.rs"
  14. [[bin]]
  15. name = "darkirc"
  16. path = "src/main.rs"
  17. [dependencies]
  18. darkfi = {path = "../../", features = ["async-daemonize", "event-graph", "net", "util", "system", "rpc", "zk"]}
  19. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  20. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  21. libc = "0.2.153"
  22. # Event Graph DB
  23. sled = "0.34.7"
  24. # TLS
  25. async-trait = "0.1.77"
  26. futures = "0.3.30"
  27. futures-rustls = "0.25.1"
  28. rustls-pemfile = "2.1.1"
  29. # Crypto
  30. blake3 = "1.5.0"
  31. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  32. rand = "0.8.5"
  33. # Misc
  34. log = "0.4.21"
  35. url = "2.5.0"
  36. # Encoding and parsing
  37. bs58 = "0.5.0"
  38. toml = "0.8.10"
  39. semver = "1.0.22"
  40. # Daemon
  41. easy-parallel = "3.3.1"
  42. signal-hook-async-std = "0.2.2"
  43. signal-hook = "0.3.17"
  44. simplelog = "0.12.2"
  45. smol = "1.3.0"
  46. # Argument parsing
  47. serde = {version = "1.0.197", features = ["derive"]}
  48. structopt = "0.3.26"
  49. structopt-toml = "0.5.1"
  50. # See https://github.com/rust-mobile/android-rs-glue/issues/193
  51. [target.aarch64-linux-android.dependencies]
  52. openssl = { version = "*", features = ["vendored"] }