From 41972f89dcb99819191ffbf2381430e63e9d916d Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Mon, 2 Jul 2018 10:16:55 +0200 Subject: [PATCH] HACK: make sure clippy builds the same deps as cargo and rls --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 72d2d8cc6ba4..dea7f3644c7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,6 +45,12 @@ clippy_lints = { version = "0.0.211", path = "clippy_lints" } regex = "1" semver = "0.9" +# Not actually needed right now but required to make sure that clippy/ and cargo build +# with the same set of features in rust-lang/rust +num-traits = "0.2" # enable the default feature +winapi = "0.3" +backtrace = "0.3" + [dev-dependencies] cargo_metadata = "0.5" compiletest_rs = "0.3.7"