Releases: nyurik/automotive_diag
Releases · nyurik/automotive_diag
v0.1.9
v0.1.8
What's Changed
- Add iter and from_repr support, switch to strum crate by @nyurik in #11
- Add
from_repr(u8) -> Option<Enum>
to allEnum
s- this is a better method than
try_from
becauseOption<T>
is likely to be smaller thanResult<T, &str>
- this is a better method than
- Add
Enum::iter()
- enabled by default with theiter
feature - Switch to strum crate
- Do not expose internal macros
- Fail to compile if none of the
with-kwp2000
,with-obd2
, orwith-uds
features are enabled.
- Add
- Add optional
serde
feature by @nyurik in #12
Full Changelog: v0.1.7...v0.1.8