Cargo.toml 632 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "tau"
  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. # Misc
  15. clap = {version = "3.1.12", features = ["derive"]}
  16. log = "0.4.16"
  17. num_cpus = "1.13.1"
  18. simplelog = "0.12.0"
  19. url = "2.2.2"
  20. chrono = "0.4.19"
  21. prettytable-rs = "0.8.0"
  22. rand = "0.8.5"
  23. # Encoding and parsing
  24. serde_json = "1.0.79"
  25. serde = {version = "1.0.136", features = ["derive"]}
  26. structopt = "0.3.26"
  27. structopt-toml = "0.5.0"