Cargo.toml 674 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "genev"
  3. description = "Generic Event example CLI"
  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. [dependencies]
  11. genevd = {path = "../genevd"}
  12. darkfi = {path = "../../../", features = ["event-graph", "rpc", "bs58"]}
  13. darkfi-serial = {path = "../../../src/serial"}
  14. smol = "2.0.2"
  15. clap = {version = "4.4.11", features = ["derive"]}
  16. tracing = "0.1.44"
  17. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  18. tinyjson = "2.5.1"
  19. url = "2.5.8"
  20. [lints]
  21. workspace = true