Skip to content

v0.1.8

Compare
Choose a tag to compare
@nyurik nyurik released this 01 Jul 11:21
· 4 commits to main since this release
f4ae6c7

What's Changed

  • Add iter and from_repr support, switch to strum crate by @nyurik in #11
    • Add from_repr(u8) -> Option<Enum> to all Enums
      • this is a better method than try_from because Option<T> is likely to be smaller than Result<T, &str>
    • Add Enum::iter() - enabled by default with the iter feature
    • Switch to strum crate
    • Do not expose internal macros
    • Fail to compile if none of the with-kwp2000, with-obd2, or with-uds features are enabled.
  • Add optional serde feature by @nyurik in #12

Full Changelog: v0.1.7...v0.1.8