Skip to content

Release v0.1.1

Compare
Choose a tag to compare
@injae injae released this 15 Aug 14:31
· 98 commits to main since this release
84fc58d

Features

  • add new feature struct attributes serde_struct<>{}.attributes(Attributes... )

    DERIVE_SERDE(Test, .attributes(...))
  • add syntax sugar

    • Old
     DERIVE_SERDE(Test, 
          (&Self::test, "test, flatten, default_{""})
    • New
    DERIVE_SERDE(Test, 
         [attributes(flatten, default_{""})]
         (&Self::test, "test)