Cargo Features
[dependencies]
cranelift-module = { version = "0.113.0", default-features = false, features = ["std", "core", "enable-serde"] }
- default = std
-
The
std
feature is set by default whenevercranelift-module
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables cranelift-codegen
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 = hashbrown
-
Enables core of cranelift-codegen
cranelift-codegen:
The "core" feature used to enable a hashmap workaround, but is now deprecated (we (i) always use hashbrown, and (ii) don't support a no_std build anymore). The feature remains for backward compatibility as a no-op.
- enable-serde = serde, serde_derive
-
For dependent crates that want to serialize some parts of cranelift
Enables enable-serde of cranelift-codegen
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.