You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running through the installation creating-a-new-project and executing the cargo run command I receiving the following error:
error[E0004]: non-exhaustive patterns: Shape { .. } and Orientation { .. } not covered
--> /home/deepit/.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.18.0/src/platform/linux/wayland/touch.rs:30:19
|
30 | match evt {
| ^^^ patterns Shape { .. } and Orientation { .. } not covered
error: aborting due to previous error
For more information about this error, try rustc --explain E0004.
error: Could not compile winit.
warning: build failed, waiting for other jobs to finish...
error: build failed
For more information about this error, try rustc --explain E0004.
error: Could not compile winit.
warning: build failed, waiting for other jobs to finish...
error: build failed`
Additional Information
I found a workaround by adding wayland-client = "=0.21.7" via
Due to the instability of crates.io, this gives way better
stability and versioning guarantees with the tradeoff that
now, users might compile crates twice. However, that is
generally better than code breaking every few days, so
it's the lesser evil.
Fixes#86 and #80.
Due to the instability of crates.io, this gives way better
stability and versioning guarantees with the tradeoff that
now, users might compile crates twice. However, that is
generally better than code breaking every few days, so
it's the lesser evil.
Fixes#86 and #80.
Description
When running through the installation creating-a-new-project and executing the
cargo run
command I receiving the following error:Version / OS
azul version:
azul = { git = "https://github.com/maps4print/azul", rev = "864de10a0a7cfbe88a9719a5c7070d2323a58de3" }
Operating system:
Linux 4.15.0-43-generic On windows, examples are build without console support to display printouts #46-Ubuntu SMP Thu Dec 6 14:45:28 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
Windowing system (X11 or Wayland, Linux only):
X11
Steps to Reproduce
Expected Behavior
Cargo run without errors.
Actual Behavior
error[E0004]: non-exhaustive patterns:
Shape { .. }and
Orientation { .. }not covered --> /home/deepit/.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.18.0/src/platform/linux/wayland/touch.rs:30:19 | 30 | match evt { | ^^^ patterns
Shape { .. }and
Orientation { .. }` not coverederror: aborting due to previous error
For more information about this error, try
rustc --explain E0004
.error: Could not compile
winit
.warning: build failed, waiting for other jobs to finish...
error: build failed`
Additional Information
I found a workaround by adding
wayland-client = "=0.21.7"
viaamethyst/amethyst#1324
The text was updated successfully, but these errors were encountered: