1 | [package] |
2 | name = "pyo3-build-config" |
3 | version = "0.20.3" |
4 | description = "Build configuration for the PyO3 ecosystem" |
5 | authors = ["PyO3 Project and Contributors <https://github.com/PyO3>" ] |
6 | keywords = ["pyo3" , "python" , "cpython" , "ffi" ] |
7 | homepage = "https://github.com/pyo3/pyo3" |
8 | repository = "https://github.com/pyo3/pyo3" |
9 | categories = ["api-bindings" , "development-tools::ffi" ] |
10 | license = "MIT OR Apache-2.0" |
11 | edition = "2021" |
12 | |
13 | [dependencies] |
14 | once_cell = "1" |
15 | python3-dll-a = { version = "0.2.6" , optional = true } |
16 | target-lexicon = "0.12" |
17 | |
18 | [build-dependencies] |
19 | python3-dll-a = { version = "0.2.6" , optional = true } |
20 | target-lexicon = "0.12" |
21 | |
22 | [features] |
23 | default = [] |
24 | |
25 | # Attempt to resolve a Python interpreter config for building in the build |
26 | # script. If this feature isn't enabled, the build script no-ops. |
27 | resolve-config = [] |
28 | |
29 | # This feature is enabled by pyo3 when building an extension module. |
30 | extension-module = [] |
31 | |
32 | # These features are enabled by pyo3 when building Stable ABI extension modules. |
33 | abi3 = [] |
34 | abi3-py37 = ["abi3-py38" ] |
35 | abi3-py38 = ["abi3-py39" ] |
36 | abi3-py39 = ["abi3-py310" ] |
37 | abi3-py310 = ["abi3-py311" ] |
38 | abi3-py311 = ["abi3-py312" ] |
39 | abi3-py312 = ["abi3" ] |
40 | |
41 | [package.metadata.docs.rs] |
42 | features = ["resolve-config" ] |
43 | |