Cargo Features
[dependencies]
tosca-solver = { version = "0.1.1", default-features = false, features = ["python"] }
- default = python
-
The
python
feature is set by default whenevertosca-solver
is added without
somewhere in the dependency tree.default-features = false - python default
-
Enables extension-module of pyo3 ^0.22.5
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.Affects
topology::ToscaValue.type_name
,topology::ToscaValue.v
,topology::Field.name
,topology::Field.value
…