Cargo.toml 731 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "tau"
  3. description = "Command-line client for taud"
  4. version = "0.4.0"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. async-std = {version = "1.12.0", features = ["attributes"]}
  12. chrono = "0.4.23"
  13. clap = {version = "4.1.4", features = ["derive"]}
  14. colored = "2.0.0"
  15. darkfi = { path = "../../../", features = ["rpc"]}
  16. log = "0.4.17"
  17. prettytable-rs = "0.10.0"
  18. serde = {version = "1.0.152", features = ["derive"]}
  19. serde_json = "1.0.91"
  20. simplelog = "0.12.0"
  21. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  22. textwrap = "0.15.2"
  23. url = "2.3.1"