milksnake
milksnake copied to clipboard
A setuptools/wheel/cffi extension to embed a binary data in wheels
Hi! Could you release a new version to include the fix in https://github.com/getsentry/milksnake/pull/32? Thank you in advance.
After the fix in https://github.com/getsentry/milksnake/commit/ef0723e41df23d8f6357570c69c1e69cb31f9e9e, a new version should be uploaded to PyPi.
Actions run example: https://github.com/messense/milksnake/actions/runs/959819612
Milksnake does not support searching for dylib/header in absolute directory. It appends `path` to the `in_path` variable (if given): https://github.com/getsentry/milksnake/blob/ef0723e/milksnake/setuptools_ext.py#L146 This prevent setting `CARGO_TARGET_DIR` to an absolute path different of...
I could not build the example with dependency `cbindgen = "0.4"`: got ``` error[E0425]: cannot find function `parse_crate` in module `syn` ``` etc. Changing to `cbindgen = "0.5"` fixed it.
The `README` (is there more documentation somewhere?) only has a very trivial example of how to use this, and it's not immediately clear how to do anything very complicated. For...
I had an issue with milksnake when setuping a CI pipeline for Linux, Mac and Windows. For Windows I `SET` the `CARGO_TARGET_DIR` to a folder I can cache between runs....
I [added](https://github.com/eqrion/cbindgen/pull/204) a `with_no_includes` option to cbindgen that removes the necessity to strip includes, which landed 0.6.4.
So, if this is the wrong place to ask this question you can bump me elsewhere (I just wasn't sure what that elsewhere was). I'm trying to understand how to...
Hello and thanks for `milksnake`! I'm having issues using the package when I wish to run a Rust function that returns a vector of tuples. I'm basically trying to replicate...