Cargo.toml 925 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "genevd"
  3. description = "Generic Event example daemon"
  4. version = "0.4.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 = "genevd"
  12. path = "src/lib.rs"
  13. [[bin]]
  14. name = "genevd"
  15. path = "src/main.rs"
  16. [dependencies]
  17. darkfi = { path = "../../../", features = [
  18. "async-daemonize",
  19. "event-graph",
  20. "rpc",
  21. ] }
  22. darkfi-serial = "0.4.2"
  23. # Crypto
  24. blake3 = "1.6.0"
  25. # Event Graph DB
  26. sled-overlay = "0.1.6"
  27. # Misc
  28. async-trait = "0.1.86"
  29. log = "0.4.26"
  30. tinyjson = "2.5.1"
  31. url = "2.5.4"
  32. # Daemon
  33. easy-parallel = "3.3.1"
  34. signal-hook-async-std = "0.2.2"
  35. signal-hook = "0.3.17"
  36. simplelog = "0.12.2"
  37. smol = "2.0.2"
  38. # Argument parsing
  39. serde = { version = "1.0.218", features = ["derive"] }
  40. structopt = "0.3.26"
  41. structopt-toml = "0.5.1"
  42. [lints]
  43. workspace = true