pyo3/pyo3-ffi-check/Cargo.toml
2022-12-03 21:11:40 +08:00

22 lines
448 B
TOML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "pyo3-ffi-check"
version = "0.1.0"
edition = "2021"
[dependencies]
pyo3-ffi-check-macro = { path = "./macro" }
memoffset = "0.7.0"
[dependencies.pyo3-ffi]
path = "../pyo3-ffi"
features = ["extension-module"] # A lazy way of skipping linking in most cases (as we don't use any runtime symbols)
[workspace]
members = [
"macro"
]
[build-dependencies]
bindgen = "0.63.0"
pyo3-build-config = { path = "../pyo3-build-config" }