Cargo Features
[dependencies]
nautilus-common = { version = "0.45.0", default-features = false, features = ["extension-module", "ffi", "clock_v2", "indicators", "python", "rstest"] }
- default = indicators, rstest
-
These default features are set whenever
nautilus-common
is added without
somewhere in the dependency tree.default-features = false - extension-module
-
Enables extension-module of nautilus-core, nautilus-indicators, nautilus-model, and pyo3
pyo3:
Use this feature when building an extension module.
It tells the linker to keep the python symbols unresolved,
so that the module can also be used with statically linked python interpreters. - ffi = cbindgen
-
Enables ffi of nautilus-core and nautilus-model
Affects
nautilus-common::ffi
… - clock_v2
- indicators default = nautilus-indicators
- python = pyo3
-
Enables python of nautilus-core and nautilus-model
Affects
nautilus-common::python
…
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.
- nautilus-indicators extension-module? indicators
- pyo3 extension-module? python?
- rstest default
- cbindgen build ffi?