Skip to content

1.0.22

Compare
Choose a tag to compare
@dtolnay dtolnay released this 04 Nov 00:50
· 314 commits to master since this release
1.0.22
09f247a
  • Fix raw identifier fields in format arguments (#108, thanks @ninevra)

    #[derive(Error, Debug)]
    #[error("raw identifier: {r#type}")]
    pub struct Error {
        r#type: i32,
    }
  • Fix Rust keyword named format arguments (#109)

    #[derive(Error, Debug)]
    #[error("keyword: {type}", type = 1)]
    pub struct Error;