pyo3-ffi: forward `extension-module` feature to `pyo3-build-config`
This commit is contained in:
parent
1276068891
commit
97a9121025
|
@ -67,7 +67,7 @@ pyproto = ["pyo3-macros/pyproto"]
|
|||
# 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.
|
||||
extension-module = ["pyo3-build-config/extension-module", "pyo3-ffi/extension-module"]
|
||||
extension-module = ["pyo3-ffi/extension-module"]
|
||||
|
||||
# Use the Python limited API. See https://www.python.org/dev/peps/pep-0384/ for more.
|
||||
abi3 = ["pyo3-build-config/abi3", "pyo3-ffi/abi3", "pyo3-macros/abi3"]
|
||||
|
|
|
@ -21,7 +21,7 @@ default = []
|
|||
# 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.
|
||||
extension-module = []
|
||||
extension-module = ["pyo3-build-config/extension-module"]
|
||||
|
||||
# Use the Python limited API. See https://www.python.org/dev/peps/pep-0384/ for more.
|
||||
abi3 = ["pyo3-build-config/abi3"]
|
||||
|
|
Loading…
Reference in New Issue