Cargo.toml 650 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "tau"
  3. description = "Command-line client for taud"
  4. version = "0.3.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.19"
  15. clap = {version = "3.2.16", features = ["derive"]}
  16. darkfi = { path = "../../../", features = ["rpc"]}
  17. log = "0.4.17"
  18. prettytable-rs = "0.8.0"
  19. serde = {version = "1.0.142", features = ["derive"]}
  20. serde_json = "1.0.83"
  21. simplelog = "0.12.0"
  22. url = "2.2.2"