2019-10-03 00:01:45 +02:00
|
|
|
[package]
|
|
|
|
|
name = "iced_winit"
|
2023-09-04 12:58:41 +02:00
|
|
|
description = "A runtime for iced on top of winit"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
keywords.workspace = true
|
2019-10-03 00:01:45 +02:00
|
|
|
|
2024-04-07 12:42:12 +02:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2019-11-03 04:39:11 +01:00
|
|
|
[features]
|
2025-11-25 08:38:59 +01:00
|
|
|
default = ["x11", "wayland"]
|
2024-05-11 12:25:44 +02:00
|
|
|
debug = ["iced_debug/enable"]
|
2025-09-08 14:32:24 +02:00
|
|
|
sysinfo = ["dep:sysinfo"]
|
2024-11-04 18:08:12 +01:00
|
|
|
unconditional-rendering = []
|
2025-09-08 09:49:11 +02:00
|
|
|
linux-theme-detection = ["dep:mundy", "mundy/async-io", "mundy/color-scheme"]
|
2025-11-25 08:38:59 +01:00
|
|
|
x11 = ["winit/x11", "window_clipboard/x11"]
|
|
|
|
|
wayland = ["winit/wayland", "winit/wayland-dlopen", "winit/wayland-csd-adwaita", "window_clipboard/wayland"]
|
2019-11-03 04:39:11 +01:00
|
|
|
|
2019-10-03 00:01:45 +02:00
|
|
|
[dependencies]
|
2024-05-11 12:25:44 +02:00
|
|
|
iced_debug.workspace = true
|
2025-03-12 02:10:42 +01:00
|
|
|
iced_program.workspace = true
|
2023-09-04 12:58:41 +02:00
|
|
|
|
|
|
|
|
log.workspace = true
|
2024-04-01 11:59:46 +02:00
|
|
|
rustc-hash.workspace = true
|
2023-09-04 12:58:41 +02:00
|
|
|
thiserror.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
window_clipboard.workspace = true
|
|
|
|
|
winit.workspace = true
|
|
|
|
|
|
|
|
|
|
sysinfo.workspace = true
|
|
|
|
|
sysinfo.optional = true
|
|
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
|
web-sys.workspace = true
|
2024-09-13 19:15:15 -03:00
|
|
|
web-sys.features = ["Document", "Window", "HtmlCanvasElement"]
|
2024-07-24 10:38:51 +02:00
|
|
|
wasm-bindgen-futures.workspace = true
|
2025-09-08 09:49:11 +02:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
mundy.workspace = true
|
|
|
|
|
mundy.optional = true
|