Remove old mod style path parsing
diff --git a/src/data.rs b/src/data.rs
index 0fa08e4..d755d83 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -293,7 +293,7 @@
                         pub_token: pub_token,
                         paren_token: parenthesized!(content in input),
                         in_token: Some(content.parse()?),
-                        path: Box::new(content.parse_synom(Path::old_parse_mod_style)?),
+                        path: Box::new(content.call(Path::parse_mod_style)?),
                     }));
                 }
             }