Cargo.toml 602 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "genev"
  3. description = "Generic Event example CLI"
  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://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. log = "0.4.22"
  17. simplelog = "0.12.2"
  18. tinyjson = "2.5.1"
  19. url = "2.5.2"
  20. [lints]
  21. workspace = true