Cargo.toml 748 B

12345678910111213141516171819202122232425
  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.22"
  13. clap = {version = "3.2.20", features = ["derive"]}
  14. colored = "2.0.0"
  15. darkfi = { path = "../../../", features = ["rpc"]}
  16. fxhash = "0.2.1"
  17. log = "0.4.17"
  18. prettytable-rs = "0.9.0"
  19. serde = {version = "1.0.145", features = ["derive"]}
  20. serde_json = "1.0.85"
  21. simplelog = "0.12.0"
  22. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  23. textwrap = "0.15.1"
  24. url = "2.3.1"