Bläddra i källkod

Upgrade dependencies.

Jing Yang 3 år sedan
förälder
incheckning
7e8e95c5dd
1 ändrade filer med 5 tillägg och 5 borttagningar
  1. 5 5
      Cargo.toml

+ 5 - 5
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "labrpc"
-version = "0.2.1"
+version = "0.2.2"
 authors = ["Jing Yang <ditsing@gmail.com>"]
 description = "A RPC framework for testing"
 edition = "2021"
@@ -11,14 +11,14 @@ homepage = "https://github.com/ditsing/labrpc"
 
 [dependencies]
 bytes = "1.1"
-crossbeam-channel = "0.5.1"
-futures = { version = "0.3.19", default-features = false, features = ["std"]}
-parking_lot = "0.11"
+crossbeam-channel = "0.5.4"
+futures = { version = "0.3.21", default-features = false, features = ["std"]}
+parking_lot = "0.12"
 rand = "0.8.0"
 tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "sync", "time", "parking_lot"] }
 
 [dev-dependencies]
-futures = { version = "0.3.19", default-features = false, features = ["std", "thread-pool"] }
+futures = { version = "0.3.21", default-features = false, features = ["std", "thread-pool"] }
 lazy_static = "1.4.0"
 
 [features]