rust-maven-plugin icon indicating copy to clipboard operation
rust-maven-plugin copied to clipboard

Build Rust Cargo crates within a Java Maven Project

Results 9 rust-maven-plugin issues
Sort by recently updated
recently updated
newest added

* "Ant" is now an optional component that needs to be installed separately. * The and script also needs updating to ensure it works on windows where it requires the...

documentation

An environment variable value can be specified as so in `pom.xml`: ```xml ... -D warnings ... org.questdb rust-maven-plugin 1.1.1 ... ... ${rustflags} ``` The above works. If the `$rustflags` property...

good first issue

I would like to be able to drop a pom file directly into the cargo project. If this is the case the test directory for the pom could be set...

Maybe somebody has asked this question before. Now I use [cross](https://github.com/cross-rs/cross) to compile some jni-rs project, and shell script as following: ```shell #!/bin/bash # install cross cargo install cross #...

For some cases, linux musl still important. How about `linux_musl-aarch64`? ```java static { try { final Process p = new ProcessBuilder("/usr/bin/env", "sh", "-c", "ldd /usr/bin/env | grep -q musl").start(); MUSL_LIBC...

Can we cross-compile? If so, should we do it from MacOS? Issue depends on https://github.com/questdb/rust-maven-plugin/issues/1

This commit introduces the `JarBinLoader` utility, which extracts native binaries embedded within JAR files to the temporary directory. It handles platform-specific naming conventions (e.g., `.exe` on Windows) and provides an...

I'm using this plugin in one of my projects, and I thought it would be nice to run clippy from the plugin. Approach could be similar to #8 ```xml io.questdb...