Cargo.toml 736 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "ruaft"
  3. version = "0.1.0"
  4. description = "Raft implemented in Rust"
  5. authors = ["Jing Yang <ditsing@gmail.com>"]
  6. edition = "2018"
  7. license = "MIT"
  8. keywords = ["raft", "consensus-protocol"]
  9. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  10. [dependencies]
  11. bincode = "1.3.1"
  12. bytes = "0.5.6"
  13. crossbeam-utils = "0.8"
  14. futures-channel = "0.3.8"
  15. futures-util = "0.3.8"
  16. labrpc = { path = "../labrpc" }
  17. parking_lot = "0.11.0"
  18. rand = "0.7.3"
  19. serde = "1.0.116"
  20. serde_derive = "1.0.116"
  21. tokio = { version = "1.0", features = ["rt-multi-thread", "time", "parking_lot"] }
  22. [dev-dependencies]
  23. anyhow = "1.0"
  24. futures = { version = "0.3.8", features = ["thread-pool"] }
  25. scopeguard = "1.1.0"