CI: add nightly features

This commit is contained in:
Knight 2016-07-29 20:30:56 +08:00
parent 68631e555f
commit 7a152248aa
3 changed files with 14 additions and 5 deletions

View file

@ -12,7 +12,7 @@ pub fn main() {
if val == "1" && key.starts_with(feature_prefix) {
let krate = key[feature_prefix.len()..].to_lowercase();
match krate.as_ref() {
"default" | "unix" | "generic" | "test_unimplemented" => continue,
"default" | "unix" | "generic" | "nightly" | "test_unimplemented" => continue,
_ => {},
}
crates.push(krate.to_string());