Cargo Features

[dependencies]
bytecode-interpreter-crypto = { version = "0.3.2", default-features = false, features = ["fiat", "u64", "u32"] }
default = fiat

The fiat feature is set by default whenever bytecode-interpreter-crypto is added without default-features = false somewhere in the dependency tree.

fiat default

Enables fiat_u64_backend of curve25519-dalek-fiat and ed25519-dalek-fiat

curve25519-dalek-fiat:

The fiat-u64 backend uses u64s with u128 products.

u64

Enables u64_backend of curve25519-dalek-fiat and ed25519-dalek-fiat

curve25519-dalek-fiat:

The u64 backend uses u64s with u128 products.

u32

Enables u32_backend of curve25519-dalek-fiat and ed25519-dalek-fiat

curve25519-dalek-fiat:

The u32 backend uses u32s with u64 products.

bytecode-interpreter-crypto has 4 features without comments.