You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rust-lang/rust#37614 introduces #[proc_macro_derive(Serialize, attributes(serde))] to whitelist attributes of a certain name inside structs that have a custom derive. We no longer need to strip serde attributes after expansion.
Also that change requires custom derives to no longer return a copy of the input item so we need to fix that.
The text was updated successfully, but these errors were encountered:
rust-lang/rust#37614 introduces
#[proc_macro_derive(Serialize, attributes(serde))]
to whitelist attributes of a certain name inside structs that have a custom derive. We no longer need to strip serde attributes after expansion.Also that change requires custom derives to no longer return a copy of the input item so we need to fix that.
The text was updated successfully, but these errors were encountered: