Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for custom cargo runner #43

Merged
merged 3 commits into from
Sep 19, 2023
Merged

Commits on Aug 29, 2023

  1. Check in Cargo.lock and install with --locked

    This is the recommended best practice for binaries, we should do it for
    `cargo-3ds` as well. A side effect of this is that we should test build
    and installation with the exact Cargo.lock dependencies with `--locked`.
    ian-h-chamberlain committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    ab30da9 View commit details
    Browse the repository at this point in the history
  2. Add support for custom runner

    Use `cargo config get` to check if the runner is configured, and if so
    use it like a normal `cargo run` invocation would. Otherwise, fall back
    to the default `3dslink` behavior we had before.
    ian-h-chamberlain committed Aug 29, 2023
    Configuration menu
    Copy the full SHA
    0db0ad3 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. Cleanup and add some more comments

    Minor tweaks like fn names, refactoring a little etc.
    
    Also update README to include an install command, with `--locked` as
    well.
    ian-h-chamberlain committed Aug 31, 2023
    Configuration menu
    Copy the full SHA
    6b4fd53 View commit details
    Browse the repository at this point in the history