From f969e57adcd0dfa92743afcb0ef963438b24e518 Mon Sep 17 00:00:00 2001 From: mcarton Date: Sat, 10 Jun 2017 19:31:34 +0200 Subject: [PATCH] Don't depend explicitly on `pulldown-cmark` Use the one from `rustc`'s, which avoids "multiple matching crate" errors. --- clippy_lints/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/clippy_lints/Cargo.toml b/clippy_lints/Cargo.toml index 408db5e37b0c..5bddeff6b421 100644 --- a/clippy_lints/Cargo.toml +++ b/clippy_lints/Cargo.toml @@ -20,7 +20,6 @@ workspace = "../clippy_tests" itertools = "0.6.0" lazy_static = "0.2.8" matches = "0.1.2" -pulldown-cmark = { version = "0.0.14", default-features = false } quine-mc_cluskey = "0.2.2" regex-syntax = "0.4.0" semver = "0.6.0"