Cargo.toml 855 B

123456789101112131415161718192021222324252627282930313233
  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. # Misc
  14. async-trait = "0.1.71"
  15. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  16. log = "0.4.19"
  17. serde_json = "1.0.100"
  18. url = "2.4.0"
  19. # Daemon
  20. async-std = "1.12.0"
  21. easy-parallel = "3.3.0"
  22. signal-hook-async-std = "0.2.2"
  23. signal-hook = "0.3.15"
  24. simplelog = "0.12.1"
  25. smol = "1.3.0"
  26. # Argument parsing
  27. serde = {version = "1.0.167", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"