Cargo.toml 534 B

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