Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. required-features = ["build-daemon"]
  14. [[bin]]
  15. name = "test"
  16. path = "bin/test.rs"
  17. [dependencies]
  18. darkfi = {path = "../../", features = ["event-graph"]}
  19. darkfi-serial = {path = "../../src/serial", features = ["async"]}
  20. # Event Graph DB
  21. sled-overlay = "0.1.3"
  22. # Crypto
  23. blake3 = "1.5.4"
  24. # Misc
  25. log = "0.4.22"
  26. url = "2.5.2"
  27. # Daemon
  28. smol = "2.0.1"
  29. # evgrd deps
  30. async-trait = {version = "0.1.81", optional = true}
  31. futures = {version = "0.3.30", optional = true}
  32. semver = {version = "1.0.23", optional = true}
  33. easy-parallel = {version = "3.3.1", optional = true}
  34. signal-hook-async-std = {version = "0.2.2", optional = true}
  35. signal-hook = {version = "0.3.17", optional = true}
  36. simplelog = {version = "0.12.2", optional = true}
  37. serde = {version = "1.0.209", features = ["derive"], optional = true}
  38. structopt = {version = "0.3.26", optional = true}
  39. structopt-toml = {version = "0.5.1", optional = true}
  40. [features]
  41. build-daemon = [
  42. "darkfi/async-daemonize",
  43. "async-trait",
  44. "futures",
  45. "semver",
  46. "easy-parallel",
  47. "signal-hook-async-std",
  48. "signal-hook",
  49. "simplelog",
  50. "serde",
  51. "structopt",
  52. "structopt-toml",
  53. ]
  54. #[lints]
  55. #workspace = true
  56. # Temp stuff
  57. [workspace]