Cargo Features

[dependencies]
resize = { version = "0.8.4", default-features = false, features = ["std", "no_std", "rayon"] }
default = rayon, std

These default features are set whenever resize is added without default-features = false somewhere in the dependency tree.

std default rayon

If you disable std, you must also enable no_std

no_std

Takes effect only if std is disabled. Use default-features=false.

Enables hashbrown and libm

rayon default = std

Enables rayon