From cc8a5a79ab6392ce33371115dce324e6ccb5309a Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 17 Jul 2016 13:40:39 -0700 Subject: [PATCH] See whether relative paths help cargo find the unstable-testing feature --- testing/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 913bd0ee..7a6dbd8e 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -14,13 +14,13 @@ build = "build.rs" unstable-testing = ["clippy", "serde/unstable-testing", "serde_codegen/unstable-testing"] [build-dependencies] -serde_codegen = { version = "*", features = ["with-syntex"] } +serde_codegen = { path = "../serde_codegen", features = ["with-syntex"] } [dev-dependencies] fnv = "1.0" rustc-serialize = "^0.3.16" -serde = "*" -serde_test = "*" +serde = { path = "../serde" } +serde_test = { path = "../serde_test" } [dependencies] clippy = { version = "^0.*", optional = true }