Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.4.2", features = ["async"]}
  21. libc = "0.2.172"
  22. # Event Graph DB
  23. sled-overlay = "0.1.8"
  24. # TLS
  25. async-trait = "0.1.88"
  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.0"
  32. crypto_box = {version = "0.9.1", features = ["std", "chacha20"]}
  33. rand = "0.8.5"
  34. # Misc
  35. log = "0.4.27"
  36. url = "2.5.4"
  37. # Encoding and parsing
  38. bs58 = "0.5.1"
  39. toml = "0.8.22"
  40. semver = "1.0.26"
  41. # Daemon
  42. easy-parallel = "3.3.1"
  43. signal-hook-async-std = "0.3.0"
  44. signal-hook = "0.3.18"
  45. simplelog = "0.12.2"
  46. smol = "2.0.2"
  47. # Argument parsing
  48. serde = {version = "1.0.219", 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.32.1", features = ["bundled"]}
  55. [lints]
  56. workspace = true