Skip to content

Commit

Permalink
Remove clippy dependency in favor of cargo clippy; bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
andybarron committed Mar 6, 2016
1 parent d00162d commit 296d174
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
8 changes: 1 addition & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "preferences"
version = "0.2.0"
version = "0.2.1"
authors = ["Andy Barron <AndrewLBarron@gmail.com>"]

description = "Read and write user-specific application data (in stable Rust)"
Expand All @@ -10,11 +10,5 @@ readme = "README.md"
keywords = ["preferences", "user", "data", "persistent", "storage"]
license = "MIT"

[features]
default = []

[dependencies]
rustc-serialize = "^0.3.18"
# to enable clippy lints:
# cargo build --features clippy
clippy = { version = "^0.0.46", optional = true }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ _Read and write user-specific application data in Rust_
## Installation
Add the following to your `Cargo.toml`:

`preferences = "^0.2.0"`
`preferences = "^0.2.1"`
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@
//! [serde-api]: https://crates.io/crates/serde

#![warn(missing_docs)]
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

extern crate rustc_serialize;

Expand Down

0 comments on commit 296d174

Please sign in to comment.