]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/Cargo.toml
Rollup merge of #75226 - pnadon:miri-undef-uninit, r=RalfJung
[rust.git] / clippy_lints / Cargo.toml
index 42e92bc1c794e71c89b634a1e791226a9f4407b7..e959c1a65112286fc14688e20c3906be95a69d23 100644 (file)
@@ -12,25 +12,28 @@ authors = [
 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
 repository = "https://github.com/rust-lang/rust-clippy"
 readme = "README.md"
-license = "MPL-2.0"
+license = "MIT OR Apache-2.0"
 keywords = ["clippy", "lint", "plugin"]
 edition = "2018"
 
 [dependencies]
-cargo_metadata = "0.7.1"
-itertools = "0.8"
+cargo_metadata = "0.9.1"
+if_chain = "1.0.0"
+itertools = "0.9"
 lazy_static = "1.0.2"
-matches = "0.1.7"
+pulldown-cmark = { version = "0.7.1", default-features = false }
 quine-mc_cluskey = "0.2.2"
 regex-syntax = "0.6"
-semver = "0.9.0"
 serde = { version = "1.0", features = ["derive"] }
-toml = "0.5"
+smallvec = { version = "1", features = ["union"] }
+toml = "0.5.3"
 unicode-normalization = "0.1"
-pulldown-cmark = "0.5.0"
-url = "1.7.0"
-if_chain = "1.0.0"
-smallvec = { version = "0.6.5", features = ["union"] }
+semver = "0.9.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"
+syn = { version = "1", features = ["full"] }
 
 [features]
-debugging = []
+deny-warnings = []