iced-yoda/winit/Cargo.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

2019-10-03 00:01:45 +02:00
[package]
name = "iced_winit"
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
[lints]
workspace = true
[features]
default = ["x11", "wayland"]
2024-05-11 12:25:44 +02:00
debug = ["iced_debug/enable"]
sysinfo = ["dep:sysinfo"]
unconditional-rendering = []
linux-theme-detection = ["dep:mundy", "mundy/async-io", "mundy/color-scheme"]
x11 = ["winit/x11", "window_clipboard/x11"]
wayland = ["winit/wayland", "winit/wayland-dlopen", "winit/wayland-csd-adwaita", "window_clipboard/wayland"]
2019-10-03 00:01:45 +02:00
[dependencies]
2024-05-11 12:25:44 +02:00
iced_debug.workspace = true
iced_program.workspace = true
log.workspace = true
rustc-hash.workspace = true
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
web-sys.features = ["Document", "Window", "HtmlCanvasElement"]
wasm-bindgen-futures.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
mundy.workspace = true
mundy.optional = true