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 i tried to run ./sh/check.sh, it fails at the step cargo check --all-features for the egui_glow crate.
apparently, winit requires one of x11 or wayland features to be enabled. because the default-features is false for the egui-winit dep in egui_glow for a long long time. so, its either a recent winit change or nobody ever checked egui_glow crate on linux until now.
To Reproduce
Steps to reproduce the behavior:
Go to crates/egui_glow
run cargo check --all-features
Output
Checking winit v0.27.2
error: Please select a feature to build for unix: `x11`, `wayland`
--> /home/red/.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.27.2/src/platform_impl/linux/mod.rs:10:1
|
10 | compile_error!("Please select a feature to build for unix: `x11`, `wayland`");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compiling wayland-scanner v0.29.4
error[E0392]: parameter `T` is never used
--> /home/red/.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.27.2/src/event_loop.rs:35:22
|
35 | pub struct EventLoop<T: 'static> {
| ^ unused parameter
|
= help: consider removing `T`, referring to it in a field, or using a marker such as `PhantomData`
error[E0392]: parameter `T` is never used
Desktop (please complete the following information):
OS: Arch Linux
The text was updated successfully, but these errors were encountered:
When i tried to run
./sh/check.sh
, it fails at the stepcargo check --all-features
for the egui_glow crate.apparently, winit requires one of x11 or wayland features to be enabled. because the
default-features
is false for the egui-winit dep in egui_glow for a long long time. so, its either a recent winit change or nobody ever checkedegui_glow
crate on linux until now.To Reproduce
Steps to reproduce the behavior:
crates/egui_glow
cargo check --all-features
Output
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: