While trying to build MappingWeaver on my Macbook, Maven complained about not finding your library, even though it just downloaded and installed the JAR. On further inspection, I believe the files for OSX architectures are simply not included when publishing MappingLoom to the Maven repository. Regardless of the relevant targets being added with rustup, the build script for the bindings only seems to do so when actually run on OSX: if [[ "$OSTYPE" == "darwin"* ]]; then ....
Edit to clarify: manually building on OSX works without a problem.
While trying to build MappingWeaver on my Macbook, Maven complained about not finding your library, even though it just downloaded and installed the JAR. On further inspection, I believe the files for OSX architectures are simply not included when publishing MappingLoom to the Maven repository. Regardless of the relevant targets being added with rustup, the build script for the bindings only seems to do so when actually run on OSX:
if [[ "$OSTYPE" == "darwin"* ]]; then ....Edit to clarify: manually building on OSX works without a problem.