Cargo.toml 781 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "tau"
  3. description = "Command-line client for taud"
  4. version = "0.4.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. keywords = []
  11. categories = ["command-line-utilities"]
  12. [dependencies]
  13. async-std = {version = "1.12.0", features = ["attributes"]}
  14. chrono = "0.4.22"
  15. clap = {version = "3.2.20", features = ["derive"]}
  16. colored = "2.0.0"
  17. darkfi = { path = "../../../", features = ["rpc"]}
  18. fxhash = "0.2.1"
  19. log = "0.4.17"
  20. prettytable-rs = "0.9.0"
  21. serde = {version = "1.0.144", features = ["derive"]}
  22. serde_json = "1.0.85"
  23. simplelog = "0.12.0"
  24. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  25. textwrap = "0.15.0"
  26. url = "2.2.2"