Cargo.toml 593 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "ruaft"
  3. version = "0.1.0"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. bincode = "1.3.1"
  9. bytes = "0.5.6"
  10. crossbeam-utils = "0.7.2"
  11. futures = { version = "0.3.5" }
  12. labrpc = { path = "../labrpc" }
  13. parking_lot = "0.11.0"
  14. rand = "0.7.3"
  15. serde = "1.0.116"
  16. serde_derive = "1.0.116"
  17. tokio = { version = "0.2.22", features = ["rt-threaded", "sync", "time"] }
  18. [dev-dependencies]
  19. anyhow = "1.0"
  20. futures = { version = "0.3.5", features = ["thread-pool"] }