Skip to content

Commit

Permalink
chore/cargo: Make clippy an optional dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Dec 24, 2015
1 parent f993868 commit f703e0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cuticula"
description = "Data Preprocessing library for Machine Learning"
authors = ["Michael Hirn <[email protected]>"]
version = "0.1.4"
version = "0.1.5"
repository = "https://github.com/autumnai/cuticula"
homepage = "https://github.com/autumnai/cuticula"
documentation = "http://autumnai.github.io/cuticula"
Expand All @@ -16,8 +16,8 @@ phloem = "0.2.4"
image = "0.4.0"
murmurhash3 = "0.0.5"
modifier = "0.1"
clippy = "0.0.23"
clippy = {version = "0.0.33", optional = true}

[features]
default = []
dev = [] # possibly for clippy
dev = ["clippy"]

0 comments on commit f703e0d

Please sign in to comment.