Cargo.toml 700 B

1234567891011121314151617181920212223242526
  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.7.2"
  14. futures = { version = "0.3.5" }
  15. labrpc = { path = "../labrpc" }
  16. parking_lot = "0.11.0"
  17. rand = "0.7.3"
  18. serde = "1.0.116"
  19. serde_derive = "1.0.116"
  20. tokio = { version = "0.3", features = ["rt-multi-thread", "time", "parking_lot"] }
  21. [dev-dependencies]
  22. anyhow = "1.0"
  23. futures = { version = "0.3.5", features = ["thread-pool"] }