Cargo Features

KZG has no features set by default.

[dependencies]
kzg = { version = "0.6.0", features = ["csprng_setup", "parallel", "serde_support", "b12_381"] }
csprng_setup = rand
parallel = rayon

Affects utils::chunk_by_num_threads

serde_support = serde

Affects polynomial::SerializablePolynomial, polynomial::SerializablePrimeField

b12_381 = bls12_381

Affects polynomial::SerializablePolynomial, polynomial::SerializablePrimeField

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.

rand csprng_setup?
serde serde_support?
bls12_381 b12_381?

Enables bls12_381 ^0.6.0

rayon parallel?