From 0b7accf86cbae032edba1818e5bf2dfa022bd5d1 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 10 Apr 2017 17:29:54 -0700 Subject: [PATCH] Remove unused unstable flag from serde_derive --- serde_derive/Cargo.toml | 3 --- travis.sh | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/serde_derive/Cargo.toml b/serde_derive/Cargo.toml index 23b0a134..866da94b 100644 --- a/serde_derive/Cargo.toml +++ b/serde_derive/Cargo.toml @@ -12,9 +12,6 @@ readme = "../README.md" include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] publish = false # this branch contains breaking changes -[features] -unstable = [] - [badges] travis-ci = { repository = "serde-rs/serde" } diff --git a/travis.sh b/travis.sh index 0f49838f..7a122feb 100755 --- a/travis.sh +++ b/travis.sh @@ -32,7 +32,7 @@ if [ -n "${CLIPPY}" ]; then cargo clippy --features 'rc unstable' -- -Dclippy cd "$DIR/serde_derive" - cargo clippy --features unstable -- -Dclippy + cargo clippy -- -Dclippy cd "$DIR/test_suite" cargo clippy --features unstable -- -Dclippy