Cargo.toml 378 B

1234567891011121314
  1. [package]
  2. name = "labrpc"
  3. version = "0.1.5"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. description = "A RPC framework for testing"
  6. edition = "2018"
  7. license = "MIT"
  8. [dependencies]
  9. bytes = "0.5.6"
  10. futures = { version = "0.3.5", features = ["thread-pool"] }
  11. parking_lot = "0.11.0"
  12. rand = "0.7.3"
  13. tokio = { version = "0.3", features = ["rt-multi-thread", "time", "parking_lot"] }