Cargo.toml 643 B

12345678910111213141516171819202122
  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://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["event-graph", "rpc", "bs58"]}
  12. darkfi-serial = {path = "../../../src/serial"}
  13. async-std = {version = "1.12.0", features = ["attributes"]}
  14. clap = {version = "4.2.2", features = ["derive"]}
  15. log = "0.4.17"
  16. simplelog = "0.12.1"
  17. serde = {version = "1.0.160", features = ["derive"]}
  18. serde_json = "1.0.96"
  19. url = "2.3.1"