Selaa lähdekoodia

Minor fixes on dependencies in Cargo.toml.

Jing Yang 4 vuotta sitten
vanhempi
commit
302bfd37ec
2 muutettua tiedostoa jossa 2 lisäystä ja 5 poistoa
  1. 1 4
      Cargo.toml
  2. 1 1
      kvraft/Cargo.toml

+ 1 - 4
Cargo.toml

@@ -32,14 +32,11 @@ default = []
 integration-test = ["test_utils"]
 integration-test = ["test_utils"]
 
 
 [dev-dependencies]
 [dev-dependencies]
-anyhow = "1.0"
-futures = { version = "0.3.15", features = ["thread-pool"] }
-ruaft = { path = ".", features = ["integration-test"] }
+kvraft = { path = "kvraft" }
 scopeguard = "1.1.0"
 scopeguard = "1.1.0"
 stdext = "0.3"
 stdext = "0.3"
 test_configs = { path = "test_configs" }
 test_configs = { path = "test_configs" }
 test_utils = { path = "test_utils" }
 test_utils = { path = "test_utils" }
-kvraft = { path = "kvraft" }
 
 
 [workspace]
 [workspace]
 members = [
 members = [

+ 1 - 1
kvraft/Cargo.toml

@@ -6,6 +6,7 @@ edition = "2018"
 [dependencies]
 [dependencies]
 async-trait = "0.1"
 async-trait = "0.1"
 bincode = "1.3.3"
 bincode = "1.3.3"
+log = "0.4.14"
 parking_lot = "0.11.1"
 parking_lot = "0.11.1"
 rand = "0.8"
 rand = "0.8"
 ruaft = { path = "..", features = ["integration-test"] }
 ruaft = { path = "..", features = ["integration-test"] }
@@ -13,7 +14,6 @@ serde = "1.0.116"
 serde_derive = "1.0.116"
 serde_derive = "1.0.116"
 test_utils = { path = "../test_utils" }
 test_utils = { path = "../test_utils" }
 tokio = { version = "1.7", features = ["time", "parking_lot"] }
 tokio = { version = "1.7", features = ["time", "parking_lot"] }
-log = "0.4.14"
 
 
 [dev-dependencies]
 [dev-dependencies]
 scopeguard = "1.1.0"
 scopeguard = "1.1.0"