Cargo.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "genevd"
  3. description = "Generic Event example 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. [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.5.0"
  23. # Crypto
  24. blake3 = "1.8.2"
  25. # Event Graph DB
  26. sled-overlay = "0.1.11"
  27. # Misc
  28. async-trait = "0.1.89"
  29. tracing = "0.1.41"
  30. tinyjson = "2.5.1"
  31. url = "2.5.4"
  32. # Daemon
  33. easy-parallel = "3.3.1"
  34. signal-hook-async-std = "0.3.0"
  35. signal-hook = "0.3.18"
  36. tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
  37. tracing-appender = "0.2.3"
  38. smol = "2.0.2"
  39. # Argument parsing
  40. serde = { version = "1.0.228", features = ["derive"] }
  41. structopt = "0.3.26"
  42. structopt-toml = "0.5.1"
  43. [lints]
  44. workspace = true