75c67150d0
build / build (3.13) (push) Waiting to run
release-please / release-please (push) Waiting to run
release-please / build wheels (macos-aarch64) (push) Blocked by required conditions
release-please / build wheels (macos-x86_64) (push) Blocked by required conditions
release-please / build wheels (windows-x86_64) (push) Blocked by required conditions
release-please / build wheels (linux-aarch64) (push) Blocked by required conditions
release-please / build wheels (linux-x86_64) (push) Blocked by required conditions
release-please / build sdist (push) Blocked by required conditions
release-please / publish release artifacts (push) Blocked by required conditions
15 lines
486 B
TOML
15 lines
486 B
TOML
[package]
|
|
name = "memu"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "_core"
|
|
# "cdylib" is necessary to produce a shared library for Python to import from.
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
|
|
# "abi3-py313" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.13
|
|
pyo3 = { version = "0.27.1", features = ["extension-module", "abi3-py313"] }
|