bjorn3

Results 1108 comments of bjorn3

swap_nonoverlapping needs a concrete type as generic parameter. As `BlobVec` is untyped, that still needs a function pointer.

> we can just use the memory in the blobvec cant we ? That is what was already happening before this PR. The motivation of this PR is that using...

Rustc probably changed how it pretty prints since the code was written. Both results are fine, as they parse to the same expression.

Another option would be for miri to provide this utils crate in the sysroot such that `#[cfg(miri)] extern crate miri_utils;` works and always pulls in the right utils crate version...

`Sized` is an auto trait, but auto traits can't have trait bounds I believe.

For Docker caching you did want to build all dependencies outside of the workspace, right? Not just build dependencies, proc macros and run build scripts for any package including those...

> So the shebang should be #!/usr/bin/cargo --bikeshed or #!/usr/bin/env -S cargo --bikeshed. macOS doesn't support `-S` as noted in the "Naming" section. `#!/usr/bin/cargo` doesn't work with non-system installs of...

> I think index-side package signing has relatively little security value in the presence of strong transport security (i.e. TLS) and cryptographic digests The reason we want package signing is...

> Revocation should be done by key lifetimes, rollover and update For crates.io requiring a cargo update after key rotation is not an option. To be able to bootstrap rustc,...

cg_clif currently gives an error when the clif ir level signature doesn't match between two declarations of the same function inside a single codegen unit. cranelift-module doesn't allow multiple declarations...