Cargo.toml 506 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "kvraft"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. async-trait = "0.1"
  7. bincode = "1.3.3"
  8. futures = "0.3.21"
  9. log = "0.4"
  10. parking_lot = "0.12"
  11. rand = "0.8"
  12. ruaft = { path = ".." }
  13. serde = "1.0"
  14. serde_derive = "1.0"
  15. test_utils = { path = "../test_utils", optional = true }
  16. tokio = { version = "1.7", features = ["time", "parking_lot"] }
  17. [dev-dependencies]
  18. scopeguard = "1.1.0"
  19. stdext = "0.3"
  20. test_configs = { path = "../test_configs" }
  21. [features]
  22. integration-test = ["test_utils"]