Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. [package]
  2. name = "darkirc"
  3. description = "P2P IRC daemon"
  4. version = "0.5.1"
  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://codeberg.org/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", "rpc", "zk"]}
  19. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  20. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  21. libc = "0.2.158"
  22. # Event Graph DB
  23. sled-overlay = "0.1.3"
  24. # TLS
  25. async-trait = "0.1.81"
  26. futures = "0.3.30"
  27. futures-rustls = {version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"]}
  28. rustls-pemfile = "2.1.3"
  29. # Crypto
  30. blake3 = "1.5.4"
  31. bcrypt = "0.15.1"
  32. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  33. rand = "0.8.5"
  34. # Misc
  35. log = "0.4.22"
  36. url = "2.5.2"
  37. # Encoding and parsing
  38. bs58 = "0.5.1"
  39. toml = "0.8.19"
  40. semver = "1.0.23"
  41. # Daemon
  42. easy-parallel = "3.3.1"
  43. signal-hook-async-std = "0.2.2"
  44. signal-hook = "0.3.17"
  45. simplelog = "0.12.2"
  46. smol = "2.0.1"
  47. # Argument parsing
  48. serde = {version = "1.0.209", features = ["derive"]}
  49. structopt = "0.3.26"
  50. structopt-toml = "0.5.1"
  51. # See https://github.com/rust-mobile/android-rs-glue/issues/193
  52. [target.aarch64-linux-android.dependencies]
  53. openssl = { version = "*", features = ["vendored"] }
  54. rusqlite = {version = "0.31.0", features = ["bundled"]}
  55. [lints]
  56. workspace = true