Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh |
In IntelliJ, create a Cargo Run configuration.
For Run on, select an SSH host where you want to run the RUST application.
![]()
![]()
Build your application with the debug profile. This is done by omitting the --release argument.
cargo build |
sudo apt-get install gdbserver |
gdbserver :1234 /path/to/your/rust_executable |
???