Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 = "bin/evgrd.rs"
  13. [[bin]]
  14. name = "test"
  15. path = "bin/test.rs"
  16. [dependencies]
  17. darkfi = {path = "../../", features = ["async-daemonize", "event-graph", "rpc", "zk"]}
  18. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  19. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  20. futures-lite = "2.3.0"
  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
  57. # Temp stuff
  58. [workspace]
  59. [patch.crates-io]
  60. halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
  61. halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}