Cargo.toml 979 B

1234567891011121314151617181920212223242526
  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. bs58 = "0.4.0"
  14. clap = {version = "4.0.25", features = ["derive"]}
  15. darkfi = {path = "../../", features = ["blockchain", "rpc", "util", "wallet"]}
  16. darkfi-sdk = {path = "../../src/sdk"}
  17. darkfi-serial = {path = "../../src/serial", features = ["derive", "crypto"]}
  18. darkfi-money-contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  19. prettytable-rs = "0.9.0"
  20. rand = "0.8.5"
  21. serde_json = "1.0.87"
  22. simplelog = "0.12.0"
  23. libsqlite3-sys = {version = "0.24.2", features = ["bundled-sqlcipher"]}
  24. sqlx = {version = "0.6.2", features = ["runtime-async-std-native-tls", "sqlite"]}
  25. url = "2.3.1"