Cargo.toml 734 B

1234567891011121314151617181920212223
  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.3.17", features = ["derive"]}
  15. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  16. log = "0.4.19"
  17. simplelog = "0.12.1"
  18. serde = {version = "1.0.173", features = ["derive"]}
  19. serde_json = "1.0.103"
  20. url = "2.4.0"