ron 0.12.1

Rusty Object Notation
Documentation
name: Setup Rust Environment

inputs:
  key:
    description: Cache key
    required: true

runs:
  using: composite
  steps:
    - uses: actions/cache@v4
      with:
        path: |
          ~/.cargo/bin/
          ~/.cargo/registry/index/
          ~/.cargo/registry/cache/
          ~/.cargo/git/db/
          target/
        key: ${{ inputs.key }}-cargo-${{ hashFiles('Cargo.lock') }}