admin管理员组文章数量:1347693
Whenever I try to run a simple program that uses iced(0.13.1), it immediately crashes with this error message.
thread 'main' panicked at /home/luka/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced_winit-0.12.2/src/application.rs:119:10:
Create event loop: Os(OsError { line: 80, file: "/home/luka/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/src/platform_impl/linux/wayland/event_loop/mod.rs", error: WaylandError(Connection(NoCompositor)) })
This is a MRE:
use iced::widget::{Column, column, text};
fn main() -> iced::Result {
iced::run("My App", MyApp::update, MyApp::view)
}
struct MyApp;
impl MyApp {
type Message = ();
fn update(&mut self, _message: Self::Message) {}
fn view(&self) -> iced::Element<Self::Message> {
column![
text("Hello, World!")
];
}
}
This is the Cargo.toml:
[package]
name = "my-iced-app"
version = "0.1.0"
edition = "2024"
[dependencies]
iced = "0.13.1"
It should open a basic window with a title of "My App".
I have no idea what to do, except switching to X11 but I'm running Pop! OS 24.02 which uses COSMIC window manager that only supports Wayland(at least I think it only does)
Whenever I try to run a simple program that uses iced(0.13.1), it immediately crashes with this error message.
thread 'main' panicked at /home/luka/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/iced_winit-0.12.2/src/application.rs:119:10:
Create event loop: Os(OsError { line: 80, file: "/home/luka/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winit-0.29.15/src/platform_impl/linux/wayland/event_loop/mod.rs", error: WaylandError(Connection(NoCompositor)) })
This is a MRE:
use iced::widget::{Column, column, text};
fn main() -> iced::Result {
iced::run("My App", MyApp::update, MyApp::view)
}
struct MyApp;
impl MyApp {
type Message = ();
fn update(&mut self, _message: Self::Message) {}
fn view(&self) -> iced::Element<Self::Message> {
column![
text("Hello, World!")
];
}
}
This is the Cargo.toml:
[package]
name = "my-iced-app"
version = "0.1.0"
edition = "2024"
[dependencies]
iced = "0.13.1"
It should open a basic window with a title of "My App".
I have no idea what to do, except switching to X11 but I'm running Pop! OS 24.02 which uses COSMIC window manager that only supports Wayland(at least I think it only does)
Share Improve this question asked 2 days ago Luka TalevskiLuka Talevski 234 bronze badges 1- You'd likely get more specific debugging advice by filing an issue with on the iced and/or winit repositories. – kmdreko Commented 2 days ago
1 Answer
Reset to default 0I fixed it by compiling in a real terminal. VS Code's terminal is apparently sandboxed and that caused an error when compiling using it.
本文标签: rustIcedwinit is not able to connect to the Wayland compositorStack Overflow
版权声明:本文标题:rust - Iced_winit is not able to connect to the Wayland compositor - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840808a2548240.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论