Because features get unified, the enabling of a feature should not break other packages in the dependency tree that did not enable a feature.
If one package in the dependency tree does not enable integer128 and exhaustively destructures Value, then something else enabling integer128 in the dependency tree will break that first package because new enum variants will be added that won't be taken care of.
Because features get unified, the enabling of a feature should not break other packages in the dependency tree that did not enable a feature.
If one package in the dependency tree does not enable
integer128and exhaustively destructuresValue, then something else enablinginteger128in the dependency tree will break that first package because new enum variants will be added that won't be taken care of.