Cargo.toml 596 B

123456789101112131415161718192021
  1. [package]
  2. name = "tau"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for taud"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = {version = "1.11.0", features = ["attributes"]}
  12. chrono = "0.4.19"
  13. clap = {version = "3.1.18", features = ["derive"]}
  14. darkfi = { path = "../../../", features = ["rpc"]}
  15. log = "0.4.17"
  16. prettytable-rs = "0.8.0"
  17. serde = {version = "1.0.137", features = ["derive"]}
  18. serde_json = "1.0.81"
  19. simplelog = "0.12.0"
  20. url = "2.2.2"