Ed Page
Ed Page
Instead of `cargo install cargo-travis`, it'd be helpful to have pre-compiled releases. For example, you can do the following to install rustfmt: ```curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --force...
Some xtasks a developer will want to run regularly (like bundling up artifacts for wasm or embedded as part of their debug cycle). Some developers might rarely run, like some...
Types of artifacts - wasm stuff - embedded stuff - tarballs - platform-specific packages While some of these are mutually exclusive, tarballs and packages are not. `xtask dist` implies a...
(sorry, needing to rush again or else I'd create a PR) Immediately useful: - [`escargot`: a cargo API](https://github.com/crate-ci/escargot/) Could be refactored to be useful - [`cargo suity`](https://github.com/andoriyu/cargo-suity)
I'm concerned that `xtask ci` will lead to less optimal practices as presented: - Some CI steps you want to run under every environment (`test`) while others you only run...
In contrast to users doing a `cargo install`, `xtasks` ensures the user has the right version of their framework tools for their application. (needing to run off to work tasks...
When I was planning on improving [git standup](https://github.com/tj/git-extras/blob/master/bin/git-standup), something I realized I'd want is to re-build the state by looking at my activity by when it happened. I think my...
### Problem Today, cargo maintainers are very cautious as to what warnings are created because they cannot be turned off by the user when they are intended. The problem is...
### What does this PR try to resolve? Have the resolver treat no-MSRV as `rust-version = "*"`, like `cargo add` does for version-requirement selection ### How should we test and...
### What does this PR try to resolve? We allowed `[badges]` to inherit from `[workspace.package.badges]` which was a bug: - This was not specified in the RFC - We did...