]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
deps: update cargo_metadata from 0.5 to 0.6.
[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
48 [dev-dependencies]
49 cargo_metadata = "0.6"
50 compiletest_rs = "0.3.7"
51 lazy_static = "1.0"
52 serde_derive = "1.0"
53 clippy-mini-macro-test = { version = "0.2", path = "mini-macro" }
54 serde = "1.0"
55 derive-new = "0.5"
56
57 # A noop dependency that changes in the Rust repository, it's a bit of a hack.
58 # See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust`
59 # for more information.
60 rustc-workspace-hack = "1.0.0"
61
62 [build-dependencies]
63 rustc_version = "0.2.2"
64 ansi_term = "0.11"
65
66 [features]
67 debugging = []