Sorseg
Sorseg
#### System details - OS/Platform name and version: `Linux host 6.8.0-76060800daily20240311-generic #202403110203~1713206908~22.04~3a62479 SMP PREEMPT_DYNAMIC Mon A x86_64 x86_64 x86_64 GNU/Linux` - Rust version (if building from source): `rustc --version`: `rustc...
Adding a WebAssembly interpreter, that supports the [component model](https://component-model.bytecodealliance.org/), for example the reference implementation [wasmtime](https://github.com/bytecodealliance/wasmtime/tree/main) as a script host will allow using a bunch of languages for scripting (currently JavaScript,...
When formatting [this file](https://github.com/Sorseg/riano/blob/5bdbb61ff1b1d4d71cf8cd1ebf98eebaa7255fa4/src/main.rs#L350) `cargo +nightly fmt` does not modify the file and reports this error: ``` error[internal]: left behind trailing whitespace --> /riano/src/main.rs:353:353:58 | 353 | piano.sustain = true;...
## Bevy version 0.14.0-rc.4 ## Relevant system information `Linux host 6.9.3-76060903-generic #202405300957~1718348209~22.04~7817b67 SMP PREEMPT_DYNAMIC Mon J x86_64 x86_64 x86_64 GNU/Linux` `rustc 1.79.0 (129f3b996 2024-06-10)` ## What you did I've updated...
Enabled debug rendering having a bunch of convex decomposition colliders, got this `index out of bounds: the len is 16 but the index is 16` ```rust 0: rust_begin_unwind at /rustc/59e2c01c2217a01546222e4d9ff4e6695ee8a1db/library/std/src/panicking.rs:658:5...
# Objective I tried writing something like this in my project ```rust .observe(|e: Trigger| { panic!("Skeletoned! {e:?}"); }); ``` and it didn't compile. Having `Debug` trait defined on `Trigger` event...
### Checked for duplicates? - [X] This issue is not a duplicate ### Does it also happen in the desktop version? - [X] This bug does not occur in the...
https://github.com/linebender/resvg/blob/f4188ddf7f0f3dcb39e6e4390a4f97040e9abc91/crates/usvg/src/parser/image.rs#L242 The `id` value is already moved into the parent group `id`, so the straightforward fix incurs string cloning performance penalty. https://github.com/linebender/resvg/blob/f4188ddf7f0f3dcb39e6e4390a4f97040e9abc91/crates/usvg/src/parser/image.rs#L240 Does it make sense to remove the field...