From 88f417e446282d7c32c648e30815aebcb4d2c8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Mon, 19 Aug 2019 06:10:00 +0200 Subject: [PATCH] try to fix build in rustc repo --- clippy_lints/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 956bc858a17..48133cc5b02 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -28,7 +28,8 @@ serde = { version = "1.0", features = ["derive"] } toml = "0.5.3" unicode-normalization = "0.1" pulldown-cmark = "0.5.3" -url = "2.1.0" +url = { version = "2.1.0", features = ["serde"] } # cargo requires serde feat in its url dep +# see https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864 if_chain = "1.0.0" smallvec = { version = "0.6.5", features = ["union"] }