https://github.com/discretetom/setup-rust-cross
Sets up Rust toolchains and cross-rs in your workflow.
https://github.com/discretetom/setup-rust-cross
Last synced: 3 months ago
JSON representation
Sets up Rust toolchains and cross-rs in your workflow.
- Host: GitHub
- URL: https://github.com/discretetom/setup-rust-cross
- Owner: DiscreteTom
- License: mit
- Created: 2025-03-01T08:55:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-01T11:06:18.000Z (over 1 year ago)
- Last Synced: 2025-12-28T02:49:26.474Z (5 months ago)
- Homepage: https://github.com/marketplace/actions/setup-rust-cross
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup Rust Cross

[](https://github.com/DiscreteTom/setup-rust-cross/releases/latest)
This GitHub Action sets up Rust toolchains and [cross-rs](https://github.com/cross-rs/cross) in your workflow.
## Usage
```yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust toolchains and cross-rs
uses: DiscreteTom/setup-rust-cross@v0.1.1
- name: Build
run: |
cross build --target aarch64-unknown-linux-musl
```
## [CHANGELOG](./CHANGELOG.md)