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
it looks like we can get rid of generic-array - checked with cargo shear
Features combinations
I was testing multiples features with
cargo hack test --feature-powerset --all-targets
# or better with
cargo hack test --feature-powerset --all-targets --exclude-features _bzip2_any,_arbitrary,_deflate-any,_all-features
And it seems that
cargo test --all-targets --no-default-features
Is failing (for the benchmarks) because i think we need to:
the std feature for getrandom devpendencies.
or
change the errors of getrandom since without std it doesn't implement std::io::Error
Private features
This command is failing
cargo test --all-targets --no-default-features --features _bzip2_any
this is normal since it's "private" but maybe we should remove the "private" featureS no ?
I was checking the crate
it looks like we can get rid of
generic-array- checked withcargo shearFeatures combinations
I was testing multiples features with
And it seems that
cargo test --all-targets --no-default-featuresIs failing (for the benchmarks) because i think we need to:
stdfeature forgetrandomdevpendencies.or
getrandomsince without std it doesn't implementstd::io::ErrorPrivate features
This command is failing
cargo test --all-targets --no-default-features --features _bzip2_anythis is normal since it's "private" but maybe we should remove the "private" featureS no ?
_all-featuresfeature seems useless