Cargo.toml 627 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "rlnd-cli"
  3. version = "0.4.1"
  4. description = "CLI-utility to control an rlnd daemon."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://codeberg.org/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../../../", features = ["async-sdk", "rpc"]}
  13. darkfi-sdk = {path = "../../../../src/sdk"}
  14. darkfi-serial = {path = "../../../../src/serial"}
  15. rlnd = {path = "../rlnd"}
  16. # Misc
  17. bs58 = "0.5.1"
  18. clap = {version = "4.4.11", features = ["derive"]}
  19. prettytable-rs = "0.10.0"
  20. rand = "0.8.6"
  21. smol = "2.0.2"
  22. url = "2.5.8"