You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2026. It is now read-only.
Currently, this project relies on the rlottie C library to be precompiled and pkg-config to be able to find it. This seems to be incompatible with windows.
I see two options going forward:
Somehow detect precompiled versions of rlottie on Windows. No idea if that's possible, and which tools are necessary to do this.
Add a vendor feature similar to other -sys crates in the ecosystem that downloads and compiles a version of rlottie and statically links it.
These options are not incompatible with each other, so both could be implemented if desired. As I don't have windows, I cannot implement this myself, but PRs are welcome. Any implementing PR needs to have a CI setup that tests everything on windows as I won't be able to test locally.
Currently, this project relies on the rlottie C library to be precompiled and
pkg-configto be able to find it. This seems to be incompatible with windows.I see two options going forward:
vendorfeature similar to other-syscrates in the ecosystem that downloads and compiles a version of rlottie and statically links it.These options are not incompatible with each other, so both could be implemented if desired. As I don't have windows, I cannot implement this myself, but PRs are welcome. Any implementing PR needs to have a CI setup that tests everything on windows as I won't be able to test locally.