Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "drk"
  3. version = "0.4.1"
  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. # Darkfi
  12. darkfi = {path = "../../", features = ["async-daemonize", "bs58", "rpc", "rusqlite"]}
  13. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  14. darkfi_dao_contract = {path = "../../src/contract/dao", features = ["no-entrypoint", "client"]}
  15. darkfi_deployooor_contract = {path = "../../src/contract/deployooor", features = ["no-entrypoint", "client"]}
  16. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  17. darkfi-serial = {path = "../../src/serial"}
  18. # Misc
  19. blake3 = "1.5.0"
  20. bs58 = "0.5.0"
  21. lazy_static = "1.4.0"
  22. log = "0.4.21"
  23. prettytable-rs = "0.10.0"
  24. rand = "0.8.5"
  25. rodio = {version = "0.17.3", default-features = false, features = ["minimp3"]}
  26. rusqlite = {version = "0.31.0", features = ["sqlcipher"]}
  27. url = "2.5.0"
  28. # Daemon
  29. easy-parallel = "3.3.1"
  30. signal-hook-async-std = "0.2.2"
  31. signal-hook = "0.3.17"
  32. simplelog = "0.12.2"
  33. smol = "1.3.0"
  34. # Argument parsing
  35. serde = {version = "1.0.197", features = ["derive"]}
  36. structopt = "0.3.26"
  37. structopt-toml = "0.5.1"