1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 02:57:44 +00:00

create redox feature as subset of generic

This commit is contained in:
Daan Hoogland 2017-01-15 13:48:33 +01:00
parent e0bfbc3c23
commit cd1f0690d7
2 changed files with 27 additions and 17 deletions

View file

@ -16,7 +16,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" | "fuchsia" | "generic" | "nightly" | "test_unimplemented" => continue,
"default" | "unix" | "redox" | "fuchsia" | "generic" | "nightly" | "test_unimplemented" => continue,
_ => {},
}
crates.push(krate.to_string());