Cargo.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. [package]
  2. name = "evgrd"
  3. description = "Event graph 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. [[bin]]
  11. name = "evgrd"
  12. path = "bin/evgrd.rs"
  13. required-features = ["build-daemon"]
  14. [[example]]
  15. name = "recv"
  16. path = "example/recv.rs"
  17. [[example]]
  18. name = "send"
  19. path = "example/send.rs"
  20. [dependencies]
  21. darkfi = {path = "../../", features = ["event-graph"]}
  22. darkfi-serial = {version = "0.5.0", features = ["async"]}
  23. # Event Graph DB
  24. sled-overlay = "0.1.12"
  25. # Crypto
  26. blake3 = "1.8.2"
  27. # Misc
  28. tracing = "0.1.41"
  29. url = "2.5.4"
  30. # Daemon
  31. smol = "2.0.2"
  32. # evgrd deps
  33. async-trait = {version = "0.1.89", optional = true}
  34. futures = {version = "0.3.31", optional = true}
  35. semver = {version = "1.0.27", optional = true}
  36. easy-parallel = {version = "3.3.1", optional = true}
  37. signal-hook-async-std = {version = "0.3.0", optional = true}
  38. signal-hook = {version = "0.3.18", optional = true}
  39. tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"], optional = true }
  40. tracing-appender = { version = "0.2.3", optional = true }
  41. serde = {version = "1.0.228", features = ["derive"], optional = true}
  42. structopt = {version = "0.3.26", optional = true}
  43. structopt-toml = {version = "0.5.1", optional = true}
  44. [features]
  45. build-daemon = [
  46. "darkfi/async-daemonize",
  47. "async-trait",
  48. "futures",
  49. "semver",
  50. "easy-parallel",
  51. "signal-hook-async-std",
  52. "signal-hook",
  53. "serde",
  54. "structopt",
  55. "structopt-toml",
  56. "tracing-subscriber",
  57. "tracing-appender"
  58. ]
  59. #[lints]
  60. #workspace = true
  61. # Temp stuff
  62. [workspace]