Cargo.toml 1.0 KB

123456789101112131415161718192021222324252627282930
  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. anyhow = "1.0.66"
  12. async-std = {version = "1.12.0", features = ["attributes"]}
  13. clap = {version = "4.0.25", features = ["derive"]}
  14. darkfi = {path = "../../", features = ["rpc", "util", "wallet"]}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. darkfi-serial = {path = "../../src/serial", features = ["derive", "crypto"]}
  17. prettytable-rs = "0.9.0"
  18. rand = "0.8.5"
  19. serde_json = "1.0.87"
  20. simplelog = "0.12.0"
  21. libsqlite3-sys = {version = "0.24.2", features = ["bundled-sqlcipher"]}
  22. sqlx = {version = "0.6.2", features = ["runtime-async-std-native-tls", "sqlite"]}
  23. url = "2.3.1"
  24. #bs58 = "0.4.0"
  25. #clap = {version = "3.2.20", features = ["derive"]}
  26. #darkfi = {path = "../../", features = ["crypto", "util", "rpc", "wasm-runtime", "zkas"]}
  27. #indicatif = "0.17.1"
  28. #log = "0.4.17"
  29. #pasta_curves = "0.4.1"