We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e2ccd commit 0f67a7eCopy full SHA for 0f67a7e
clippy_lints/src/multiple_crate_versions.rs
@@ -21,10 +21,10 @@ declare_clippy_lint! {
21
///
22
/// **Example:**
23
/// ```toml
24
- /// # This will pull in both winapi v0.3.4 and v0.2.8, triggering a warning.
+ /// # This will pull in both winapi v0.3.x and v0.2.x, triggering a warning.
25
/// [dependencies]
26
- /// ctrlc = "3.1.0"
27
- /// ansi_term = "0.11.0"
+ /// ctrlc = "=3.1.0"
+ /// ansi_term = "=0.11.0"
28
/// ```
29
pub MULTIPLE_CRATE_VERSIONS,
30
cargo,
0 commit comments