Cargo.toml 716 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "taud"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies]
  6. darkfi = { path = "../../../", features = ["rpc", "raft", "net"]}
  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.8", features = ["derive"]}
  17. log = "0.4.16"
  18. num_cpus = "1.13.1"
  19. simplelog = "0.12.0-alpha1"
  20. rand = "0.8.5"
  21. chrono = "0.4.19"
  22. thiserror = "1.0.30"
  23. # Encoding and parsing
  24. serde_json = "1.0.79"
  25. serde = {version = "1.0.136", features = ["derive"]}
  26. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}