repi

Results 194 comments of repi

Did an experiment to switch to `nanoserde` and it seems to work fine, there are some contraints and type/format output changes that one have to figure out (no `PathBuf` support),...

> Determine why rustc_codegen_spirv is not split in frontend/codegen sections in the profile report. This would enable spriv-builder itself to start building earlier and before the codegen of rustc_codegen_spirv is...

ah that is an interesting idea and approach, what do you think of the feasibility of that @eddyb ?

> * Support `#[repr(Rust)]` This is the richest one and most ideal one if/when we have Rust both on the CPU and GPU side. But also this representation has explicitly...

We actively using this crate on Apple Silicon every day and have had no problems with it so think has been fixed a while ago and this issue can be...

Think so too, we are actively using #58 on `aarch64-apple-darwin` and `aarch64-linux-android`

ah yes! didn't know we had an issue on it, was just a 10 min fix. will mark it resolved by my PR

we've for now solved this with https://github.com/bnjbvr/cargo-machete that @bnjbvr built, it does have false positives but ways of working around them so we have this enabled in CI on our...

I was initially thinking that we can just run `cargo-vet` manually in CI instead of having it integrated in `cargo-deny`, as it would be standalone and wouldn't use any of...

awesome! did a quick test with building our codebase with this and did fail on `wasmtime-runtime` using inline asm: ``` error: asm! and global_asm! sym operands are not yet supported...