Cargo.toml 526 B

123456789101112131415161718192021222324
  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.0"
  10. futures-util = "0.3.15"
  11. kvraft = { path = "../kvraft" }
  12. labrpc = "0.2.1"
  13. linearizability = { path = "../linearizability" }
  14. log = "0.4"
  15. parking_lot = "0.11"
  16. rand = "0.8"
  17. ruaft = { path = "..", features = ["integration-test"] }
  18. serde = "1.0"
  19. test_utils = { path = "../test_utils" }
  20. [dev-dependencies]
  21. futures = { version = "0.3.15", features = ["thread-pool"] }
  22. stdext = "0.3"