Skip to content

v2.0.0-rc.12 - Fix bugs with enums

Pre-release
Pre-release
Compare
Choose a tag to compare
@oscartbeaumont oscartbeaumont released this 09 May 02:42

This release fixes a bug where the following type would cause Specta to crash:

#[derive(Type)]
#[serde(tag = "type", content = "data")]
pub enum SkippedFieldWithinVariant {
    A(#[serde(skip)] String),
    B(String),
}