`tagged` macro should be more efficient for binary formats
Opened this issue · 0 comments
jbearer commented
The tagged
macro implements serde traits by converting to and from TaggedBase64
. This is great for human-readable formats, but for binary formats we end up serializing a bunch of extra stuff we don't need, like the human-readable tag. For binary formats, we should directly get bytes from CanonicalSerialize
and write those.