Cargo.toml 488 B

12345678910111213141516171819
  1. [package]
  2. name = "labrpc"
  3. version = "0.1.11"
  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.1"
  11. futures = { version = "0.3.15", default-features = false, features = ["thread-pool"] }
  12. parking_lot = "0.11.1"
  13. rand = "0.8.0"
  14. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "sync", "time", "parking_lot"] }
  15. [features]
  16. default = []
  17. tracing = []