Cargo.toml 789 B

12345678910111213141516171819202122232425262728
  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. [dependencies]
  11. darkfi = {path = "../../../", features = ["event-graph", "rpc", "bs58", "util"]}
  12. darkfi-serial = {path = "../../../src/serial"}
  13. async-std = {version = "1.12.0", features = ["attributes"]}
  14. async-trait = "0.1.64"
  15. ctrlc = { version = "3.2.5", features = ["termination"] }
  16. easy-parallel = "3.2.0"
  17. simplelog = "0.12.0"
  18. smol = "1.3.0"
  19. log = "0.4.17"
  20. url = "2.3.1"
  21. # Argument parsing
  22. serde = {version = "1.0.152", features = ["derive"]}
  23. serde_json = "1.0.93"
  24. structopt = "0.3.26"
  25. structopt-toml = "0.5.1"