Cargo Features
[dependencies]
memflex = { version = "0.8.4", default-features = false, features = ["std", "alloc", "internal", "external"] }
- default = internal, std
-
These default features are set whenever
memflex
is added without
somewhere in the dependency tree.default-features = false - std default external? internal = alloc, libc, windows
- alloc std
-
Affects
internal::current_module
,win::modules
,types::ModuleInfoWithName
… - internal default = std
-
Affects
memflex::internal
,types::ModuleInfo
,types::ModuleInfoWithName
… - external = std
-
Affects
memflex::external
…
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.
- libc unix std
- windows win std
-
Enables windows ^0.43