| Crates.io | cargo-warp |
| lib.rs | cargo-warp |
| version | 0.1.11 |
| created_at | 2024-06-24 20:33:48.74674+00 |
| updated_at | 2025-10-03 18:21:42.846203+00 |
| description | Build then copy your project binary to a remote host. |
| homepage | https://github.com/MattCairns |
| repository | https://github.com/MattCairns |
| max_upload_size | |
| id | 1282548 |
| size | 22,189 |
The tool allows users to build Rust projects and transfer built files to a specified destination using rsync. It supports both standard Cargo builds and cross-compilation using the cross tool.
Usage: cargo warp [OPTIONS] <DESTINATION>
Arguments:
<DESTINATION>
Options:
-c, --cross
-p, --package <PACKAGE>
-t, --target <TARGET>
-h, --help Print help
Building and sending the project to a remote PC called mypc using the aarch64-unknown-linux-gnu target:
cargo warp mypc:~/. --cross -t aarch64-unknown-linux-gnu -p foo
Building and sending the project to a remote PC called mypc:
cargo warp mypc:~/. -p foo