We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 677ee76 + 6e8850d commit 8a0376cCopy full SHA for 8a0376c
Makefile
@@ -12,6 +12,8 @@ IGNORE_ARGS ?=
12
13
DENY = -D warnings -D future-incompatible -D unused -D rust_2018_idioms -D nonstandard_style
14
15
+CLIPPY_DENY = -D clippy::all -D clippy::cargo -A clippy::multiple-crate-versions
16
+
17
${HOME}/.cargo/bin/cargo-tree:
18
cargo install cargo-tree
19
@@ -72,12 +74,10 @@ sudo_test:
72
74
clippy:
73
75
RUSTFLAGS="${DENY}" \
76
cargo clippy --all-targets --all-features -- \
- -D clippy::cargo \
- -D clippy::all
77
+ ${CLIPPY_DENY}
78
cd devicemapper-rs-sys && RUSTFLAGS="${DENY}" \
79
80
81
82
docs:
83
cargo doc --no-deps
0 commit comments