]> git.lizzy.rs Git - rust.git/blobdiff - Cargo.toml
Improve tests
[rust.git] / Cargo.toml
index c7a3099b8ab0a4f0857cce4b5d079b359a27e85e..1d6bf1ea0eb96995ae94a93491c7d482efbab6fd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "clippy"
-version = "0.0.212"
+version = "0.1.52"
 authors = [
        "Manish Goregaokar <manishsmail@gmail.com>",
        "Andre Bogus <bogusandre@gmail.com>",
@@ -18,6 +18,9 @@ build = "build.rs"
 edition = "2018"
 publish = false
 
+[workspace]
+exclude = ["clippy_dev", "mini-macro", "target/lintcheck/crates"]
+
 [[bin]]
 name = "cargo-clippy"
 test = false
@@ -29,18 +32,16 @@ path = "src/driver.rs"
 
 [dependencies]
 # begin automatic update
-clippy_lints = { version = "0.0.212", path = "clippy_lints" }
+clippy_lints = { version = "0.1.50", path = "clippy_lints" }
 # end automatic update
-semver = "0.10"
-rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
+semver = "0.11"
+rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
 tempfile = { version = "3.1.0", optional = true }
-lazy_static = "1.0"
 
 [dev-dependencies]
-cargo_metadata = "0.11.1"
-compiletest_rs = { version = "0.5.0", features = ["tmp"] }
-tester = "0.7"
-lazy_static = "1.0"
+cargo_metadata = "0.12"
+compiletest_rs = { version = "0.6.0", features = ["tmp"] }
+tester = "0.9"
 clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
 serde = { version = "1.0", features = ["derive"] }
 derive-new = "0.5"
@@ -51,8 +52,9 @@ derive-new = "0.5"
 rustc-workspace-hack = "1.0.0"
 
 [build-dependencies]
-rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util"}
+rustc_tools_util = { version = "0.2.0", path = "rustc_tools_util" }
 
 [features]
 deny-warnings = []
 integration = ["tempfile"]
+internal-lints = ["clippy_lints/internal-lints"]