Cargo Features

[dependencies]
ff = { version = "0.14.0-pre.0", default-features = false, features = ["std", "alloc", "bits", "derive"] }
default = bits, std

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

std default = alloc
alloc std

Affects batch::BatchInvert

bits default = bitvec

Enables bits of optional ff_derive

ff_derive:

enabled when generating bitvec code utilizing the version of ff's bitvec ff/bits enables this

Affects ff::FieldBits, ff::PrimeFieldBits

derive = byteorder, ff_derive

Affects ff::derive

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

bitvec bits
byteorder derive?
ff_derive derive?