]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Merge pull request #3190 from eddyb/rextern-2
[rust.git] / Cargo.toml
1 cargo-features = ["edition"]
2
3 [package]
4 name = "clippy"
5 version = "0.0.212"
6 authors = [
7         "Manish Goregaokar <manishsmail@gmail.com>",
8         "Andre Bogus <bogusandre@gmail.com>",
9         "Georg Brandl <georg@python.org>",
10         "Martin Carton <cartonmartin@gmail.com>",
11         "Oliver Schneider <clippy-iethah7aipeen8neex1a@oli-obk.de>"
12 ]
13 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
14 repository = "https://github.com/rust-lang-nursery/rust-clippy"
15 readme = "README.md"
16 license = "MPL-2.0"
17 keywords = ["clippy", "lint", "plugin"]
18 categories = ["development-tools", "development-tools::cargo-plugins"]
19 build = "build.rs"
20 edition = "2018"
21
22 [badges]
23 travis-ci = { repository = "rust-lang-nursery/rust-clippy" }
24 appveyor = { repository = "rust-lang-nursery/rust-clippy" }
25
26 [lib]
27 name = "clippy"
28 plugin = true
29 test = false
30
31 [[bin]]
32 name = "cargo-clippy"
33 test = false
34 path = "src/main.rs"
35
36 [[bin]]
37 name = "clippy-driver"
38 test = false
39 path = "src/driver.rs"
40
41 [dependencies]
42 # begin automatic update
43 clippy_lints = { version = "0.0.212", path = "clippy_lints" }
44 # end automatic update
45 regex = "1"
46 semver = "0.9"
47 rustc_tools_util = { version = "0.1.0", path = "rustc_tools_util"}
48
49 [dev-dependencies]
50 clippy_dev = { version = "0.0.1", path = "clippy_dev" }
51 cargo_metadata = "0.6"
52 compiletest_rs = "0.3.7"
53 lazy_static = "1.0"
54 serde_derive = "1.0"
55 clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
56 serde = "1.0"
57 derive-new = "0.5"
58
59 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
60 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
61 # for more information.
62 rustc-workspace-hack = "1.0.0"
63
64 [build-dependencies]
65 rustc_tools_util = { version = "0.1.0", path = "rustc_tools_util"}
66
67 [features]
68 debugging = []