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