Explorar el Código

Minor tweaks in Cargo.toml.

Jing Yang hace 3 años
padre
commit
879e45ecaa
Se han modificado 3 ficheros con 7 adiciones y 2 borrados
  1. 5 1
      Cargo.toml
  2. 1 1
      durio/Cargo.toml
  3. 1 0
      kvraft/Cargo.toml

+ 5 - 1
Cargo.toml

@@ -33,7 +33,6 @@ default = []
 integration-test = ["test_utils"]
 
 [dev-dependencies]
-kvraft = { path = "kvraft" }
 scopeguard = "1.1.0"
 stdext = "0.3"
 test_configs = { path = "test_configs" }
@@ -47,3 +46,8 @@ members = [
     "test_configs",
     "test_utils",
 ]
+default-members = [
+    ".",
+    "kvraft",
+    "linearizability",
+]

+ 1 - 1
durio/Cargo.toml

@@ -32,4 +32,4 @@ tokio = { version = "1.7", features = ["macros", "rt-multi-thread", "time", "par
 tokio-serde = { version = "0.8", features = ["json"] }
 
 [dev-dependencies]
-reqwest = { version = "0.11", features = ["json"] }
+reqwest = { version = "0.11", default-features = false, features = ["json"] }

+ 1 - 0
kvraft/Cargo.toml

@@ -22,4 +22,5 @@ stdext = "0.3"
 test_configs = { path = "../test_configs" }
 
 [features]
+default = []
 integration-test = ["test_utils"]