Cargo.toml 545 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "crdt"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies.darkfi]
  7. path = "../../../"
  8. features = ["net"]
  9. [dependencies]
  10. serde = {version = "1.0.136", features = ["derive"]}
  11. # Async
  12. smol = "1.2.5"
  13. futures = "0.3.21"
  14. async-std = "1.10.0"
  15. async-trait = "0.1.52"
  16. async-channel = "1.6.1"
  17. async-executor = "1.4.1"
  18. easy-parallel = "3.2.0"
  19. # Crypto
  20. rand = "0.8.5"
  21. # Misc
  22. clap = "3.1.6"
  23. log = "0.4.14"
  24. simplelog = "0.11.2"
  25. [workspace]