compactly_derive/
lib.rs

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