mirror of
https://github.com/extism/extism.git
synced 2026-01-09 13:57:55 -05:00
Maturin on Windows struggles with GNU headers. Since we have windows MSVC wheel builds, this commit disables windows GNU wheel builds. Also: fix a bug where the produced wheels did not include any extism functions.
18 lines
407 B
TOML
18 lines
407 B
TOML
[build-system]
|
|
requires = ["maturin>=1.1,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "extism-sys"
|
|
version = "0.0.0+replaced-by-ci"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dependencies = ["cffi"]
|
|
|
|
[tool.maturin]
|
|
bindings = "cffi"
|