mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
15 lines
489 B
TOML
15 lines
489 B
TOML
[package]
|
|
name = "networking"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[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-py39" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.9
|
|
pyo3 = { version = "0.22.4", features = ["extension-module", "abi3-py39"] }
|