Skip to content

Commit 9110b6e

Browse files
committed
Merge pull request #950 from oli-obk/split3
split clippy into lints, plugin and cargo-clippy
2 parents ef46015 + bf227f4 commit 9110b6e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+647
-534
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
# Generated by Cargo
1111
/target/
12+
/clippy_lints/target/
1213

1314
# We don't pin yet
1415
Cargo.lock

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ test = false
2020

2121
[[bin]]
2222
name = "cargo-clippy"
23-
path = "src/lib.rs"
2423
test = false
2524

2625
[dependencies]
@@ -30,6 +29,7 @@ semver = "0.2.1"
3029
toml = "0.1"
3130
unicode-normalization = "0.1"
3231
quine-mc_cluskey = "0.2.2"
32+
clippy_lints = { version = "0.0.*", path = "clippy_lints" }
3333

3434
[dev-dependencies]
3535
compiletest_rs = "0.1.0"

clippy_lints/Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "clippy_lints"
3+
version = "0.0.69"
4+
authors = [
5+
"Manish Goregaokar <[email protected]>",
6+
"Andre Bogus <[email protected]>",
7+
"Georg Brandl <[email protected]>",
8+
"Martin Carton <[email protected]>"
9+
]
10+
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
11+
repository = "https://github.com/Manishearth/rust-clippy"
12+
readme = "README.md"
13+
license = "MPL-2.0"
14+
keywords = ["clippy", "lint", "plugin"]
15+
16+
[dependencies]
17+
regex-syntax = "0.3.0"
18+
semver = "0.2.1"
19+
toml = "0.1"
20+
unicode-normalization = "0.1"
21+
quine-mc_cluskey = "0.2.2"
22+
23+
[features]
24+
debugging = []
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)