Cargo.toml 427 B

123456789101112131415161718192021
  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. labrpc = "0.1.12"
  11. log = "0.4"
  12. parking_lot = "0.11.1"
  13. rand = "0.8"
  14. ruaft = { path = "..", features = ["integration-test"] }
  15. serde = "1.0.116"
  16. test_utils = { path = "../test_utils" }
  17. [dev-dependencies]
  18. futures = { version = "0.3.15", features = ["thread-pool"] }
  19. stdext = "0.3"