Cargo.toml 469 B

12345678910111213141516171819
  1. [package]
  2. name = "labrpc"
  3. version = "0.1.10"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. description = "A RPC framework for testing"
  6. edition = "2018"
  7. license = "MIT"
  8. [dependencies]
  9. bytes = "1.0"
  10. crossbeam-channel = "0.5.0"
  11. futures = { version = "0.3.8", default-features = false, features = ["thread-pool"] }
  12. parking_lot = "0.11.1"
  13. rand = "0.8.0"
  14. tokio = { version = "1.0", features = ["rt-multi-thread", "time", "parking_lot"] }
  15. [features]
  16. default = []
  17. tracing = []