Cargo.toml 599 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "tau-cli"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies]
  6. darkfi = { path = "../../../", features = ["rpc"]}
  7. # Async
  8. smol = "1.2.5"
  9. futures = "0.3.21"
  10. async-std = {version = "1.11.0", features = ["attributes"]}
  11. async-trait = "0.1.53"
  12. async-channel = "1.6.1"
  13. async-executor = "1.4.1"
  14. easy-parallel = "3.2.0"
  15. # Misc
  16. clap = {version = "3.1.10", features = ["derive"]}
  17. log = "0.4.16"
  18. num_cpus = "1.13.1"
  19. simplelog = "0.12.0"
  20. url = "2.2.2"
  21. chrono = "0.4.19"
  22. prettytable-rs = "0.8.0"
  23. # Encoding and parsing
  24. serde_json = "1.0.79"
  25. serde = {version = "1.0.136", features = ["derive"]}