]> git.lizzy.rs Git - rust.git/blob - Cargo.toml
Basic framework for structured logging
[rust.git] / Cargo.toml
1 [package]
2 name = "clippy"
3 version = "0.0.6"
4 authors = [
5         "Manish Goregaokar <manishsmail@gmail.com>",
6         "Andre Bogus <bogusandre@gmail.com>"
7 ]
8 description = "A bunch of helpful lints to avoid common pitfalls in Rust"
9 repository = "https://github.com/Manishearth/rust-clippy"
10 readme = "README.md"
11 license = "MPL-2.0"
12 keywords = ["clippy", "lint", "plugin"]
13
14 [lib]
15 name = "clippy"
16 plugin = true
17
18 [dev-dependencies]
19 compiletest_rs = "*"
20 regex = "*"
21 regex_macros = "*"
22 lazy_static = "*"
23
24 [features]
25
26 structured_logging = []