syntex_syntax 0.31 brings a change from ``` pub enum Visibility { Public, Inherited, } ``` to ``` pub enum Visibility { Public, Crate, Restricted { path: P<Path>, id: NodeId }, Inherited, } ``` It's unclear if the new variants need handling.