Hi!
Clap 2.9.2 (and maybe some other versions, I haven't done an investigation) triggers future compatablity warning in this code:
|
(@arg ($arg:expr) $modes:tt !$ident $($tail:tt)*) => { |
This is an erroneous definition of a macro, because $ident fragment lacks :ident specifier. This has been a deny-by-default lint for some time, and we'd want to hard error it eventually (and most likely rather soon). So, given that this crate might stop to compile eventually, it seems prudent to yank it, to give reverse-dependeices a heads up!
cc rust-lang/rust#75516
cc dzamlo/treeify#2
Hi!
Clap 2.9.2 (and maybe some other versions, I haven't done an investigation) triggers future compatablity warning in this code:
clap/src/macros.rs
Line 506 in 9605ea8
This is an erroneous definition of a macro, because
$identfragment lacks:identspecifier. This has been a deny-by-default lint for some time, and we'd want to hard error it eventually (and most likely rather soon). So, given that this crate might stop to compile eventually, it seems prudent to yank it, to give reverse-dependeices a heads up!cc rust-lang/rust#75516
cc dzamlo/treeify#2