pyo3/pyo3-ffi-check/Cargo.toml

23 lines
463 B
TOML
Raw Normal View History

[package]
name = "pyo3-ffi-check"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
pyo3-ffi-check-macro = { path = "./macro" }
2023-05-24 12:50:44 +00:00
memoffset = "0.9.0"
[dependencies.pyo3-ffi]
2022-11-23 07:51:43 +00:00
path = "../pyo3-ffi"
2022-12-17 11:32:56 +00:00
features = ["extension-module"] # A lazy way of skipping linking in most cases (as we don't use any runtime symbols)
[build-dependencies]
bindgen = "0.66.1"
2022-11-23 07:51:43 +00:00
pyo3-build-config = { path = "../pyo3-build-config" }
[workspace]
members = [
"macro"
]