]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/Cargo.toml
Use DefId in interning defined symbol lint
[rust.git] / clippy_lints / Cargo.toml
index 7514608bc7e8a729cfc48616795a36783946176d..a9516560a61952c9bb6d58acd168805cccd1f35a 100644 (file)
@@ -1,7 +1,7 @@
 [package]
 name = "clippy_lints"
 # begin automatic update
-version = "0.0.212"
+version = "0.1.51"
 # end automatic update
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
@@ -17,23 +17,25 @@ keywords = ["clippy", "lint", "plugin"]
 edition = "2018"
 
 [dependencies]
-cargo_metadata = "0.9.0"
+cargo_metadata = "0.12"
 if_chain = "1.0.0"
 itertools = "0.9"
-lazy_static = "1.0.2"
-pulldown-cmark = { version = "0.7", default-features = false }
+pulldown-cmark = { version = "0.8", default-features = false }
 quine-mc_cluskey = "0.2.2"
 regex-syntax = "0.6"
 serde = { version = "1.0", features = ["derive"] }
 smallvec = { version = "1", features = ["union"] }
 toml = "0.5.3"
 unicode-normalization = "0.1"
-semver = "0.9.0"
+semver = "0.11"
+rustc-semver="1.1.0"
 # NOTE: cargo requires serde feat in its url dep
 # see <https://github.com/rust-lang/rust/pull/63587#issuecomment-522343864>
 url = { version =  "2.1.0", features = ["serde"] }
-quote = "1.0.2"
-syn = { version = "1.0.11", features = ["full"] }
+quote = "1"
+syn = { version = "1", features = ["full"] }
 
 [features]
 deny-warnings = []
+# build clippy with internal lints enabled, off by default
+internal-lints = []