diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2019-08-19 06:10:00 +0200 |
|---|---|---|
| committer | Matthias Krüger <matthias.krueger@famsik.de> | 2019-08-19 06:10:00 +0200 |
| commit | 88f417e446282d7c32c648e30815aebcb4d2c8b4 (patch) | |
| tree | 293ae7ace86aecd8fb6725367ed583ed983c8762 | |
| parent | f01a0c0e08b5905f174d30201b0cb927f5cad500 (diff) | |
| download | rust-88f417e446282d7c32c648e30815aebcb4d2c8b4.tar.gz rust-88f417e446282d7c32c648e30815aebcb4d2c8b4.zip | |
try to fix build in rustc repo
| -rw-r--r-- | clippy_lints/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
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"] } |
