Cargo.toml 758 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "tau"
  3. description = "Command-line client for taud"
  4. version = "0.4.1"
  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. libc = "0.2.155"
  12. darkfi = {path = "../../../", features = ["rpc"]}
  13. taud = {path = "../taud"}
  14. # Misc
  15. chrono = "0.4.38"
  16. colored = "2.1.0"
  17. log = "0.4.21"
  18. prettytable-rs = "0.10.0"
  19. simplelog = "0.12.2"
  20. smol = "2.0.0"
  21. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  22. textwrap = "0.16.1"
  23. url = "2.5.0"
  24. # Encoding and parsing
  25. clap = {version = "4.4.11", features = ["derive"]}
  26. serde = {version = "1.0.203", features = ["derive"]}
  27. tinyjson = "2.5.1"