1 | [package] |
2 | name = "pyo3-build-config" |
3 | version = "0.24.2" |
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 | rust-version = "1.63" |
13 | |
14 | [dependencies] |
15 | once_cell = "1" |
16 | python3-dll-a = { version = "0.2.12" , optional = true } |
17 | target-lexicon = "0.13" |
18 | |
19 | [build-dependencies] |
20 | python3-dll-a = { version = "0.2.12" , optional = true } |
21 | target-lexicon = "0.13" |
22 | |
23 | [features] |
24 | default = [] |
25 | |
26 | # Attempt to resolve a Python interpreter config for building in the build |
27 | # script. If this feature isn't enabled, the build script no-ops. |
28 | resolve-config = [] |
29 | |
30 | # This feature is enabled by pyo3 when building an extension module. |
31 | extension-module = [] |
32 | |
33 | # These features are enabled by pyo3 when building Stable ABI extension modules. |
34 | abi3 = [] |
35 | abi3-py37 = ["abi3-py38" ] |
36 | abi3-py38 = ["abi3-py39" ] |
37 | abi3-py39 = ["abi3-py310" ] |
38 | abi3-py310 = ["abi3-py311" ] |
39 | abi3-py311 = ["abi3-py312" ] |
40 | abi3-py312 = ["abi3-py313" ] |
41 | abi3-py313 = ["abi3" ] |
42 | |
43 | [package.metadata.docs.rs] |
44 | features = ["resolve-config" ] |
45 | |