Cargo.toml 509 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "test_configs"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. anyhow = "1.0"
  7. async-trait = "0.1"
  8. bincode = "1.3.3"
  9. bytes = "1.0"
  10. kvraft = { path = "../kvraft" }
  11. labrpc = "0.1.12"
  12. linearizability = { path = "../linearizability" }
  13. log = "0.4"
  14. parking_lot = "0.11.1"
  15. rand = "0.8"
  16. ruaft = { path = "..", features = ["integration-test"] }
  17. serde = "1.0.116"
  18. test_utils = { path = "../test_utils" }
  19. [dev-dependencies]
  20. futures = { version = "0.3.15", features = ["thread-pool"] }
  21. stdext = "0.3"