Cargo.toml 422 B

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