dpc
dpc
> The way the backport tool works, is that it clones the repository into a temporary folder, and performans the git operations there. The commit you want to backport therefore...
> Does Github even support this? If you have a private fork, of a public repo, can you create a pull request on the public repo, that references a change...
> I think in CI (though not in local runs), Is there a standard way to tell `cargo-nextest` that it's running in the CI? I wasn't aware of it. It...
I was pointed to https://github.com/rust-bitcoin/rust-bitcoin/blob/675da341274f7338fcf5a7c6ca9bd6b2f254b511/.github/workflows/fuzz.yml#L66
Yeah, it's probably a good idea.
@kornelski Done, I think.
@ehuss Thank you for your details post. I was able to get it working ``` > cat .config/spellcheck.toml [Hunspell] use_builtin = true skip_os_lookups = false search_dirs = [ "." ]...
> You can achieve checking only changed files using `git diff --files $branchbase..HEAD which usually is the preferred mode of usage. Thank you. That changes things. I'll give it a...
Can you explain more why and where exactly do you need it? Personally I always use nightly rustfmt with stable toolchain. In my own project I use `combine`, but for...
`+toolchain` is a `rustup` binary wrapper functionality, and can't be done without it. With `fenix` one can just instantiate multiple fenix instances with different toolchains (e.g. using `toolchainOf`). For more...