6818e737ef
Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version. - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.63.0...v0.65.1) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
424 B
TOML
18 lines
424 B
TOML
[package]
|
|
name = "pyo3-ffi-check"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
pyo3-ffi-check-macro = { path = "./macro" }
|
|
memoffset = "0.9.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)
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.65.1"
|
|
pyo3-build-config = { path = "../pyo3-build-config" }
|