Cargo.toml 559 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "consensusd"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["crypto", "rpc"]
  8. [dependencies]
  9. chrono = "0.4.19"
  10. rand = "0.8.5"
  11. # Async
  12. smol = "1.2.5"
  13. async-std = "1.11.0"
  14. async-trait = "0.1.53"
  15. async-channel = "1.6.1"
  16. async-executor = "1.4.1"
  17. easy-parallel = "3.2.0"
  18. # Misc
  19. clap = {version = "3.1.8", features = ["derive"]}
  20. log = "0.4.16"
  21. num_cpus = "1.13.1"
  22. simplelog = "0.12.0-alpha1"
  23. # Encoding and parsing
  24. serde = {version = "1.0.136", features = ["derive"]}
  25. serde_json = "1.0.79"
  26. [workspace]