Cargo Features

[dependencies]
libffi = { version = "5.1.0", default-features = false, features = ["std", "complex", "system", "check_only"] }
default = std

The std feature is set by default whenever libffi is added without default-features = false somewhere in the dependency tree.

std default

Enables std of libffi-sys

complex

Affects types::c_c32, types::c_c64, low::type_tag.COMPLEX

system

Enables system of libffi-sys

check_only

Can be used to accelerate check builds by not building C code

Enables check_only of libffi-sys