lofty_attr: Allow dead code

This commit is contained in:
Serial 2024-03-28 13:52:53 -04:00 committed by Alex
parent 9559f09a61
commit 7b77c4f56f

View file

@ -7,6 +7,7 @@ pub(crate) enum AttributeValue {
Path(Ident),
/// `#[lofty(attribute_name = "value")]`
NameValue(Ident, LitStr),
#[allow(dead_code)]
/// `#[lofty(attribute_name(value1, value2, value3))]`
SingleList(Ident, Punctuated<Expr, Token![,]>),
}