Cargo Features
[dependencies]
didppy = { version = "0.8.0", default-features = false, features = ["extension-module", "abi3"] }
- default = abi3, extension-module
-
These default features are set whenever
didppy
is added without
somewhere in the dependency tree.default-features = false - extension-module default
-
Enables extension-module of pyo3 ^0.21
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. - abi3 default
-
Enables abi3-py37 of pyo3 ^0.21
pyo3:
With abi3, we can manually set the minimum Python version.
DIDPPy has 3 features without comments.