Cargo.toml 444 B

12345678910111213141516171819
  1. [package]
  2. name = "labrpc"
  3. version = "0.1.9"
  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. crossbeam-channel = "0.5.0"
  11. futures = { version = "0.3.5", features = ["thread-pool"] }
  12. parking_lot = "0.11.0"
  13. rand = "0.7.3"
  14. tokio = { version = "0.3", features = ["rt-multi-thread", "time", "parking_lot"] }
  15. [features]
  16. default = []
  17. tracing = []