Cargo.toml 833 B

123456789101112131415161718192021222324252627282930313233343536373839
  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://github.com/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 = ["async-daemonize", "event-graph", "rpc"]}
  18. darkfi-serial = {path = "../../../src/serial"}
  19. # Misc
  20. async-trait = "0.1.73"
  21. log = "0.4.20"
  22. tinyjson = "2.5.1"
  23. url = "2.4.0"
  24. # Daemon
  25. easy-parallel = "3.3.0"
  26. signal-hook-async-std = "0.2.2"
  27. signal-hook = "0.3.17"
  28. simplelog = "0.12.1"
  29. smol = "1.3.0"
  30. # Argument parsing
  31. serde = {version = "1.0.185", features = ["derive"]}
  32. structopt = "0.3.26"
  33. structopt-toml = "0.5.1"