pyo3/pyo3-ffi/Cargo.toml

45 lines
1.5 KiB
TOML
Raw Normal View History

2022-01-25 13:46:27 +00:00
[package]
name = "pyo3-ffi"
2024-03-10 22:16:18 +00:00
version = "0.21.0-beta.0"
2022-01-25 13:46:27 +00:00
description = "Python-API bindings 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"]
2023-04-15 18:01:31 +00:00
license = "MIT OR Apache-2.0"
edition = "2021"
links = "python"
2022-01-25 13:46:27 +00:00
[dependencies]
libc = "0.2.62"
[features]
default = []
# Use this feature when building an extension module.
# It tells the linker to keep the python symbols unresolved,
# so that the module can also be used with statically linked python interpreters.
extension-module = ["pyo3-build-config/extension-module"]
2022-01-25 13:46:27 +00:00
# Use the Python limited API. See https://www.python.org/dev/peps/pep-0384/ for more.
abi3 = ["pyo3-build-config/abi3"]
# With abi3, we can manually set the minimum Python version.
abi3-py37 = ["abi3-py38", "pyo3-build-config/abi3-py37"]
abi3-py38 = ["abi3-py39", "pyo3-build-config/abi3-py38"]
abi3-py39 = ["abi3-py310", "pyo3-build-config/abi3-py39"]
2022-11-23 08:08:12 +00:00
abi3-py310 = ["abi3-py311", "pyo3-build-config/abi3-py310"]
abi3-py311 = ["abi3-py312", "pyo3-build-config/abi3-py311"]
abi3-py312 = ["abi3", "pyo3-build-config/abi3-py312"]
2022-01-25 13:46:27 +00:00
# Automatically generates `python3.dll` import libraries for Windows targets.
generate-import-lib = ["pyo3-build-config/python3-dll-a"]
2022-01-25 13:46:27 +00:00
[build-dependencies]
2024-03-10 22:16:18 +00:00
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.21.0-beta.0", features = ["resolve-config"] }
[lints]
workspace = true