Cargo.toml 1.6 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 = {version = "0.5.0", features = ["async"]}
  21. libc = "0.2.177"
  22. # Event Graph DB
  23. sled-overlay = "0.1.11"
  24. # TLS
  25. async-trait = "0.1.89"
  26. futures = "0.3.31"
  27. futures-rustls = {version = "0.26.0", default-features = false, features = ["logging", "tls12", "ring"]}
  28. rustls-pemfile = "2.2.0"
  29. # Crypto
  30. blake3 = "1.8.2"
  31. bcrypt = "0.17.1"
  32. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  33. rand = "0.8.5"
  34. # Misc
  35. tracing = "0.1.41"
  36. url = "2.5.4"
  37. # Encoding and parsing
  38. bs58 = "0.5.1"
  39. toml = "0.9.8"
  40. semver = "1.0.27"
  41. # Daemon
  42. easy-parallel = "3.3.1"
  43. signal-hook-async-std = "0.3.0"
  44. signal-hook = "0.3.18"
  45. tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
  46. tracing-appender = "0.2.3"
  47. smol = "2.0.2"
  48. # Argument parsing
  49. serde = {version = "1.0.228", features = ["derive"]}
  50. structopt = "0.3.26"
  51. structopt-toml = "0.5.1"
  52. # See https://github.com/rust-mobile/android-rs-glue/issues/193
  53. [target.aarch64-linux-android.dependencies]
  54. openssl = { version = "*", features = ["vendored"] }
  55. rusqlite = {version = "0.37.0", features = ["bundled"]}
  56. [lints]
  57. workspace = true