Cargo.toml 458 B

123456789101112131415161718192021
  1. [package]
  2. name = "kvraft"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. anyhow = "1.0"
  7. bincode = "1.3.1"
  8. bytes = "1.0"
  9. labrpc = { path = "../../labrpc" }
  10. parking_lot = "0.11.1"
  11. rand = "0.8"
  12. ruaft = { path = "../" }
  13. linearizability = { path = "../linearizability" }
  14. scopeguard = "1.1.0"
  15. serde = "1.0.116"
  16. serde_derive = "1.0.116"
  17. tokio = { version = "1.0", features = ["rt-multi-thread", "time", "parking_lot"] }
  18. [dev-dependencies]
  19. scopeguard = "1.1.0"