Cargo Features

[dependencies]
didppy = { version = "0.7.3", default-features = false, features = ["extension-module", "abi3"] }
default = abi3, extension-module

These default features are set whenever didppy is added without default-features = false somewhere in the dependency tree.

extension-module default

Enables extension-module of pyo3 ^0.20

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.20

pyo3:

With abi3, we can manually set the minimum Python version.

DIDPPy has 3 features without comments.