- Update dependency on
darling
to its latest version (0.14).
- Don't panic on tuple variants. #9
- Update dependency on
darling
to its latest version (0.13).
- Add
#![no_std]
tofrom_variants
so the crate works onno_std
targets.
- Change minimum Rust version from 1.15 to 1.45
- Update Rust to
edition = "2018"
. - Update dependencies on
syn
,quote
,darling
to their latest versions. - Drop
error-chain
dependency.
- Update dependencies on
syn
,quote
,darling
, anderror-chain
to their latest versions.
- Update dependencies on
syn
,quote
, anddarling
to their latest versions.
- Update dependencies on
syn
,quote
, anddarling
to their latest versions.
- errors will now be returned all at once, rather than stopping assessment on first error.
- attempting to derive
FromVariants
on a struct now causes a compilation error instead of failing silently.
- switched to
darling
for attribute parsing.
- removed
#[from_variants(no_std)]
; generated code will now always refer tocore
. Projects usingstd
will not see any adverse effects.