Jing Yang 4 лет назад
Родитель
Сommit
f7dd4fbe5b
5 измененных файлов с 10 добавлено и 10 удалено
  1. 3 3
      Cargo.toml
  2. 2 2
      durio/Cargo.toml
  3. 2 2
      kvraft/Cargo.toml
  4. 2 2
      test_configs/Cargo.toml
  5. 1 1
      test_utils/Cargo.toml

+ 3 - 3
Cargo.toml

@@ -15,10 +15,10 @@ homepage = "https://github.com/ditsing/ruaft"
 [dependencies]
 async-trait = "0.1"
 bincode = "1.3.3"
-bytes = "1.0"
+bytes = "1.1"
 crossbeam-utils = "0.8"
-futures-channel = "0.3.15"
-futures-util = "0.3.15"
+futures-channel = "0.3.19"
+futures-util = "0.3.19"
 log = "0.4"
 parking_lot = "0.11"
 rand = "0.8"

+ 2 - 2
durio/Cargo.toml

@@ -14,9 +14,9 @@ categories = ["raft"]
 
 [dependencies]
 async-trait = "0.1"
-bytes = "1.0"
+bytes = "1.1"
 crossbeam-channel = "0.5.1"
-futures-util = "0.3.15"
+futures-util = "0.3.19"
 kvraft = { path = "../kvraft" }
 lazy_static = "1.4.0"
 log = "0.4"

+ 2 - 2
kvraft/Cargo.toml

@@ -6,7 +6,7 @@ edition = "2021"
 [dependencies]
 async-trait = "0.1"
 bincode = "1.3.3"
-futures = "0.3.15"
+futures = "0.3.19"
 log = "0.4.14"
 parking_lot = "0.11"
 rand = "0.8"
@@ -18,5 +18,5 @@ tokio = { version = "1.7", features = ["time", "parking_lot"] }
 
 [dev-dependencies]
 scopeguard = "1.1.0"
-stdext = "0.3.0"
+stdext = "0.3"
 test_configs = { path = "../test_configs" }

+ 2 - 2
test_configs/Cargo.toml

@@ -7,8 +7,8 @@ edition = "2021"
 anyhow = "1.0"
 async-trait = "0.1"
 bincode = "1.3.3"
-bytes = "1.0"
-futures-util = "0.3.15"
+bytes = "1.1"
+futures-util = "0.3.19"
 kvraft = { path = "../kvraft" }
 labrpc = "0.2.1"
 linearizability = { path = "../linearizability" }

+ 1 - 1
test_utils/Cargo.toml

@@ -4,7 +4,7 @@ version = "0.1.0"
 edition = "2021"
 
 [dependencies]
-env_logger = "0.8"
+env_logger = "0.9"
 log = "0.4"
 rand = "0.8"