Skip to content

1.5.0 release

Compare
Choose a tag to compare
@rodrimati1992 rodrimati1992 released this 02 Oct 07:42
· 13 commits to master since this release
c8a2595

This release adds derive macros for ConstDefault and for TransparentNewtype.

Changelog

1.5.0

Added "derive" and "all_items_no_derive" features.
Enabling the "derive" feature (implied by "all_items") also enables the syn, proc-macro2, and quote dependencies for the derive macros, so compile-times go up.

Added derive macros for ConstDefault and TransparentNewtype, under the "derive" feature.

Added ConstDefault impl for isize and usize

Added delegate_transparent_newtype_impl macro.

Fixed compilation error when "rust_1_51" feature is enabled, and the "on_drop" feature is disabled. Now the "rust_1_51" feature implies "on_drop".

Now the "transparent_newtype" feature implies the "marker_type" feature.