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
This because serde derive requires that the crate serde is imported as serde
and features share the same namespace with dependencies.
As I need to explicitly enable glutin/serde I currently use serde1 as the feature flag and
emit a compilation error in case serde is used without serde1.
The text was updated successfully, but these errors were encountered:
The serde feature is currently called
serde1
.This because serde derive requires that the crate serde is imported as
serde
and features share the same namespace with dependencies.
As I need to explicitly enable
glutin/serde
I currently useserde1
as the feature flag andemit a compilation error in case
serde
is used withoutserde1
.The text was updated successfully, but these errors were encountered: