Releases: pantonshire/enumscribe
Releases · pantonshire/enumscribe
0.4.0
0.3.1
- Fixes a bug that prevented some strings (e.g. strings containing escape sequences) from being deserialized by the generated
serde::Deserialize
impl.
0.3.0
- Introduces the
std
feature which is required forScribeCowStr
,TryScribeCowStr
,ScribeString
andTryScribeString
. Thestd
feature may be disabled for compatibility withno_std
environments
0.2.1
- The
#[enumscribe(case_insensitive)]
attribute may be used to annotate an entire enum rather than just individual variants, marking all variants as case insensitive - Individual variants may opt-in to case sensitivity in a case insensitive enum with the
#[enumscribe(case_sensitive)]
attribute
0.1.2
- Generated
impl
blocks are now annotated with#[automatically_derived]