1use synstructure::decl_derive;
2
3mod v1;
4mod v2;
5
6decl_derive!([Encode, attributes(compactly)] => v1::derive_compactly);
7
8decl_derive!([EncodeV1, attributes(compactly)] => v1::derive_compactly);
9
10decl_derive!([EncodeV2, attributes(compactly)] => v2::derive_compactly);