See whether relative paths help cargo find the unstable-testing feature

This commit is contained in:
David Tolnay 2016-07-17 13:40:39 -07:00
parent 4f79829849
commit cc8a5a79ab
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -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 }