pacak / bpaf

Command line parser with applicative interface
Apache License 2.0
340 stars 17 forks source link

support raw identifiers in the derive macro #282

Closed pacak closed 1 year ago

pacak commented 1 year ago
#[derive(Bpaf)]
struct Opts {
  r#in: PathBuf
}

then it generates a flag like --r#in whereas I'd have expected --in , is this intended?