Cargo.toml 472 B

123456789101112131415161718192021
  1. [package]
  2. name = "kvraft"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. async-trait = "0.1"
  7. bincode = "1.3.3"
  8. log = "0.4.14"
  9. parking_lot = "0.11.1"
  10. rand = "0.8"
  11. ruaft = { path = "..", features = ["integration-test"] }
  12. serde = "1.0.116"
  13. serde_derive = "1.0.116"
  14. test_utils = { path = "../test_utils" }
  15. tokio = { version = "1.7", features = ["time", "parking_lot"] }
  16. [dev-dependencies]
  17. scopeguard = "1.1.0"
  18. stdext = "0.3.0"
  19. test_configs = { path = "../test_configs" }