-
Bug DescriptionHi, I'm using you project to build a Python package for my library adb_client. I'm facing an issue I haven't find any workaround. Project structure:
I want to include files from lib2 inside my wheel to let people build the crate if needed.
My goal is to be able to My pyproject.toml is the following when located at the root directory: [tool.maturin]
include = [{ path = "lib2/**/*", format = "sdist" }]
features = ["pyo3/extension-module"]
manifest-path = "python_lib/Cargo.toml" Is there something I'm doing wrong ? Thanks ! Your maturin version (
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You don't need to embed source code from |
Beta Was this translation helpful? Give feedback.
You don't need to embed source code from
lib2
if it's a crates.io dependency, but if you want to embed it then it should be configured as a cargo path dependency.