Cargo Features

[dependencies]
alexcrichton-cranelift-native = { version = "0.53.0", default-features = false, features = ["std", "core"] }
default = std

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

std default

Enables std of alexcrichton-cranelift-codegen

alexcrichton-cranelift-codegen:

The "std" feature enables use of libstd. The "core" feature enables use of some minimal std-like replacement libraries. At least one of these two features need to be enabled.

core

when compiling with the "core" feature, nightly must be enabled enabling the "nightly" feature for raw-cpuid allows avoiding linking in a c-library.

Enables core of alexcrichton-cranelift-codegen, nightly of raw-cpuid ^7.0.3