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