Cargo.toml 729 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "labrpc"
  3. version = "0.2.3"
  4. authors = ["Jing Yang <ditsing@gmail.com>"]
  5. description = "A RPC framework for testing"
  6. edition = "2021"
  7. license = "MIT"
  8. readme = "README.md"
  9. repository = "https://github.com/ditsing/labrpc"
  10. homepage = "https://github.com/ditsing/labrpc"
  11. [dependencies]
  12. bytes = "1.1"
  13. crossbeam-channel = "0.5.4"
  14. futures = { version = "0.3.21", default-features = false, features = ["std"]}
  15. parking_lot = "0.12"
  16. rand = "0.8.0"
  17. tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "sync", "time", "parking_lot"] }
  18. [dev-dependencies]
  19. futures = { version = "0.3.21", default-features = false, features = ["std", "thread-pool"] }
  20. lazy_static = "1.4.0"
  21. [features]
  22. default = []
  23. tracing = []