Cargo.toml 844 B

12345678910111213141516171819202122232425262728293031
  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. darkfi = { path = "../../../", features = ["rpc"]}
  12. # Async
  13. async-std = {version = "1.12.0", features = ["attributes"]}
  14. # Misc
  15. chrono = "0.4.26"
  16. colored = "2.0.0"
  17. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher"]}
  18. log = "0.4.19"
  19. prettytable-rs = "0.10.0"
  20. simplelog = "0.12.1"
  21. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  22. textwrap = "0.16.0"
  23. url = "2.4.0"
  24. # Encoding and parsing
  25. clap = {version = "4.3.3", features = ["derive"]}
  26. serde = {version = "1.0.164", features = ["derive"]}
  27. serde_json = "1.0.96"