2021-05-19 20:50:25 +00:00
|
|
|
[package]
|
|
|
|
name = "pyo3-build-config"
|
2022-03-15 17:42:31 +00:00
|
|
|
version = "0.16.2"
|
2021-05-19 20:50:25 +00:00
|
|
|
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]
|
2021-06-01 17:31:34 +00:00
|
|
|
once_cell = "1"
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
[features]
|
2021-11-19 14:19:24 +00:00
|
|
|
default = []
|
2021-09-02 02:40:47 +00:00
|
|
|
|
|
|
|
# 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 = []
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
abi3 = []
|
|
|
|
abi3-py37 = ["abi3-py38"]
|
|
|
|
abi3-py38 = ["abi3-py39"]
|
2021-09-24 21:53:55 +00:00
|
|
|
abi3-py39 = ["abi3-py310"]
|
|
|
|
abi3-py310 = ["abi3"]
|
2022-03-01 09:31:38 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["resolve-config"]
|