```console $ cd example
$ remy hello
$ tree target/bin target/bin ├── arm-unknown-linux-gnueabi │ └── hello ├── i686-unknown-linux-gnu │ └── hello ├── x8664-unknown-cloudabi │ └── hello └── x8664-unknown-linux-gnu └── hello ```
Target types can be skipped with -e <pattern>
, e.g. -e cloudabi
.
See remy -h
for more details.
remy quickly generates Rust ports for multiple target environments, by running your Rust project through an array of Docker containers for different target toolchains.
https://github.com/mcandre/remy/releases
https://crates.io/crates/remy
https://docs.rs/releases/search?query=remy
console
$ cargo install remy
.cargo/config
. See the included example project for more information.remy
with your project's binary names as arguments.target/bin/<environment>/<binary>
.For more details on developing remy itself, see DEVELOPMENT.md.