Skip to content

Commit 2ed80d4

Browse files
committed
Auto merge of #4410 - matthiaskrgr:url_serde_feat, r=phansch
deps: try to fix build in rustc repo: enable serde feature url dep in clippy-lints crate This might fix the problem in #63587 I didn't have time to test this yet. r? @flip1995 changelog: enable serde feature of url dep in clippy-lints to depened on it in the same way cargo does
2 parents f01a0c0 + 88f417e commit 2ed80d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clippy_lints/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ serde = { version = "1.0", features = ["derive"] }
2828
toml = "0.5.3"
2929
unicode-normalization = "0.1"
3030
pulldown-cmark = "0.5.3"
31-
url = "2.1.0"
31+
url = { version = "2.1.0", features = ["serde"] } # cargo requires serde feat in its url dep
32+
# see https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864
3233
if_chain = "1.0.0"
3334
smallvec = { version = "0.6.5", features = ["union"] }
3435

0 commit comments

Comments
 (0)