Replace old Ident::parse_any
diff --git a/src/data.rs b/src/data.rs
index d755d83..242dc7f 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -286,7 +286,7 @@
                         pub_token: pub_token,
                         paren_token: parenthesized!(content in input),
                         in_token: None,
-                        path: Box::new(Path::from(content.parse_synom(Ident::parse_any)?)),
+                        path: Box::new(Path::from(content.call(Ident::parse_any)?)),
                     }));
                 } else if content.peek(Token![in]) {
                     return Ok(Visibility::Restricted(VisRestricted {