Would @mcy be amenable to adding serde::Serialize and quote::ToTokens trait implementations to the library gated by feature flags?
I have a library where I'm doing some serialisation and macro stuff, and it would be most useful not to have to faff with wrapper types. I appreciate that increases the surface area of the library but, at least serde::Serialize, is probably quite widely applicable. Adding the feature flags will keep the default build dependency free.
I'm happy to write the actual impls etc if you're happy with the general idea.
Would @mcy be amenable to adding
serde::Serializeandquote::ToTokenstrait implementations to the library gated by feature flags?I have a library where I'm doing some serialisation and macro stuff, and it would be most useful not to have to faff with wrapper types. I appreciate that increases the surface area of the library but, at least
serde::Serialize, is probably quite widely applicable. Adding the feature flags will keep the default build dependency free.I'm happy to write the actual
impls etc if you're happy with the general idea.