Cargo.toml 699 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "drk"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for darkfid"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = {version = "1.12.0", features = ["attributes"]}
  12. bs58 = "0.4.0"
  13. clap = {version = "3.2.20", features = ["derive"]}
  14. darkfi = {path = "../../", features = ["crypto", "util", "rpc", "wasm-runtime", "zkas"]}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. indicatif = "0.17.1"
  17. log = "0.4.17"
  18. pasta_curves = "0.4.1"
  19. prettytable-rs = "0.9.0"
  20. rand = "0.8.5"
  21. serde_json = "1.0.87"
  22. simplelog = "0.12.0"
  23. url = "2.3.1"