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
Currently every optional dependency has an implicit feature named after the dependency. For example, a parachain-specific pallet like parachain-staking is an optional dependency with an implicit feature parachain-staking that will enable the dependency.
We don't need those implicit features and probably want to disable them, because the optional dependencies usually belong to groups (like "parachain"). The rust docs specify how to disable implicit features
The text was updated successfully, but these errors were encountered:
Currently every optional dependency has an implicit feature named after the dependency. For example, a parachain-specific pallet like
parachain-staking
is an optional dependency with an implicit featureparachain-staking
that will enable the dependency.We don't need those implicit features and probably want to disable them, because the optional dependencies usually belong to groups (like "parachain").
The rust docs specify how to disable implicit features
The text was updated successfully, but these errors were encountered: