pyo3/pyo3-build-config/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "pyo3-build-config"
2022-05-15 19:31:00 +00:00
version = "0.16.5"
description = "Build configuration for the PyO3 ecosystem"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
keywords = ["pyo3", "python", "cpython", "ffi"]
homepage = "https://github.com/pyo3/pyo3"
repository = "https://github.com/pyo3/pyo3"
categories = ["api-bindings", "development-tools::ffi"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
once_cell = "1"
python3-dll-a = { version = "0.2.2", optional = true }
target-lexicon = "0.12"
[build-dependencies]
python3-dll-a = { version = "0.2.2", optional = true }
target-lexicon = "0.12"
[features]
default = []
# Attempt to resolve a Python interpreter config for building in the build
# script. If this feature isn't enabled, the build script no-ops.
resolve-config = []
# This feature is enabled by pyo3 when building an extension module.
extension-module = []
# These features are enabled by pyo3 when building Stable ABI extension modules.
abi3 = []
abi3-py37 = ["abi3-py38"]
abi3-py38 = ["abi3-py39"]
2021-09-24 21:53:55 +00:00
abi3-py39 = ["abi3-py310"]
abi3-py310 = ["abi3"]
[package.metadata.docs.rs]
features = ["resolve-config"]