|
| 1 | +// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution. |
| 3 | +// |
| 4 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 5 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 6 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 7 | +// option. This file may not be copied, modified, or distributed |
| 8 | +// except according to those terms. |
| 9 | + |
| 10 | +use crate::rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass}; |
| 11 | +use crate::rustc::{declare_tool_lint, lint_array}; |
| 12 | +use crate::syntax::ast::*; |
| 13 | +use crate::utils::span_lint; |
| 14 | + |
| 15 | +use cargo_metadata; |
| 16 | +use lazy_static::lazy_static; |
| 17 | +use semver; |
| 18 | + |
| 19 | +/// **What it does:** Checks to see if wildcard dependencies are being used. |
| 20 | +/// |
| 21 | +/// **Why is this bad?** [As the edition guide sais](https://rust-lang-nursery.github.io/edition-guide/rust-2018/cargo-and-crates-io/crates-io-disallows-wildcard-dependencies.html), |
| 22 | +/// it is highly unlikely that you work with any possible version of your dependency, |
| 23 | +/// and wildcard dependencies would cause unnecessary breakage in the ecosystem. |
| 24 | +/// |
| 25 | +/// **Known problems:** None. |
| 26 | +/// |
| 27 | +/// **Example:** |
| 28 | +/// ```toml |
| 29 | +/// [dependencies] |
| 30 | +/// regex = "*" |
| 31 | +/// ``` |
| 32 | +declare_clippy_lint! { |
| 33 | + pub WILDCARD_DEPENDENCIES, |
| 34 | + cargo, |
| 35 | + "wildcard dependencies being used" |
| 36 | +} |
| 37 | + |
| 38 | +pub struct Pass; |
| 39 | + |
| 40 | +impl LintPass for Pass { |
| 41 | + fn get_lints(&self) -> LintArray { |
| 42 | + lint_array!(WILDCARD_DEPENDENCIES) |
| 43 | + } |
| 44 | +} |
| 45 | + |
| 46 | +impl EarlyLintPass for Pass { |
| 47 | + fn check_crate(&mut self, cx: &EarlyContext<'_>, krate: &Crate) { |
| 48 | + let metadata = if let Ok(metadata) = cargo_metadata::metadata(None) { |
| 49 | + metadata |
| 50 | + } else { |
| 51 | + span_lint(cx, WILDCARD_DEPENDENCIES, krate.span, "could not read cargo metadata"); |
| 52 | + return; |
| 53 | + }; |
| 54 | + |
| 55 | + lazy_static! { |
| 56 | + static ref WILDCARD_VERSION_REQ: semver::VersionReq = semver::VersionReq::parse("*").unwrap(); |
| 57 | + } |
| 58 | + |
| 59 | + for dep in &metadata.packages[0].dependencies { |
| 60 | + if dep.req == *WILDCARD_VERSION_REQ { |
| 61 | + span_lint( |
| 62 | + cx, |
| 63 | + WILDCARD_DEPENDENCIES, |
| 64 | + krate.span, |
| 65 | + &format!("wildcard dependency for `{}`", dep.name), |
| 66 | + ); |
| 67 | + } |
| 68 | + } |
| 69 | + } |
| 70 | +} |
0 commit comments