Cargo.toml 1.5 KB

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