piano-trainer icon indicating copy to clipboard operation
piano-trainer copied to clipboard

Tauri dev in local fails to compile

Open pratikIT95 opened this issue 4 months ago • 0 comments

While running the tauri dev command, this error related to midir pops up -

>    --> D:\home\.cargo\registry\src\github.com-1ecc6299db9ec823\midir-0.7.0\src\backend\winmm\mod.rs:100:38
>     |
> 100 |         let pname: &[u16] = unsafe { &device_caps.szPname }; // requires unsafe because of packed alignment ...
>     |                                      ^^^^^^^^^^^^^^^^^^^^
>     |
>     = note: `#[allow(unaligned_references)]` on by default
>     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
>     = note: for more information, see issue #82523 <https://github.com/rust-lang/rust/issues/82523>
>     = note: fields of packed structs are not properly aligned, and creating a misaligned reference is undefined behavior (even if that reference is never dereferenced)
>     = help: copy the field contents to a local variable, or replace the reference with a raw pointer and use `read_unaligned`/`write_unaligned` (loads and stores via `*p` must be properly aligned even when using raw pointers)
[...]

This seems to be an issue with midir 0.7.0, it needs to be updated to 0.8.0

pratikIT95 avatar Feb 24 '24 16:02 pratikIT95