Cargo.toml 639 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "test_configs"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. anyhow = "1.0"
  7. async-trait = "0.1"
  8. bincode = "1.3.3"
  9. bytes = "1.1"
  10. crossbeam-channel = "0.5.5"
  11. futures-channel = "0.3.21"
  12. futures-util = "0.3.21"
  13. kvraft = { path = "../kvraft", features = ["integration-test"] }
  14. labrpc = "0.2.2"
  15. linearizability = { path = "../linearizability" }
  16. log = "0.4"
  17. once_cell = "1.12.0"
  18. parking_lot = "0.12"
  19. rand = "0.8"
  20. raft = { path = "../raft", features = ["integration-test"] }
  21. serde = "1.0"
  22. test_utils = { path = "../test_utils" }
  23. [dev-dependencies]
  24. futures = { version = "0.3.21", features = ["thread-pool"] }
  25. stdext = "0.3"