Weihang Lo
Weihang Lo
Totally valid. When a lockfile already lacks checksums for git dependencies, the only possible way to get around is indeed skipping that check. Cargo doesn't even require a package checksum...
@mehulmathur001 For the linked PR, see and . As far as I understand, you could do this to bypass some checks: ```bash echo '{"package":null,"files":{}}' > $some-crate/.cargo-checksum.json ```
was just merged, so the next nightly (nightly-2024-05-05 presumably) will include the change.
> Looks great. I did also check it on linux, but I might recommend adding a regression test to help ensure that this works on other systems -- perhaps something...
There are some nuances between normal `cargo build` and `cargo doc`. For each rustc invocation, Cargo requests for [dep-info files](https://doc.rust-lang.org/nightly/cargo/guide/build-cache.html#dep-info-files) to deteremine when to rebuild. However, `rustdoc` doesn't have the...
https://github.com/Byron/gitoxide/pull/1371 has been merged. The next step is waiting for a new release, and determine if we want a beta backport before Gitoxide integration hits stable.
Close as #13948 should have resolved this. The new nightly cargo should come out on this Friday/Saturday. Let us know if the issue persists then.
@kornelski I am experimenting on patching with patch files . This should solve the problem in the other way, since it is able to patch everything including `package.version` in Cargo.toml....
@bors r+ Thanks for doing all the messy works.
It failed on Windows with an exit code other than 101 (`STATUS_STACK_BUFFER_OVERRUN`). I've tried a simple project with a custom harness, but had no luck to reproduce it… Should we...