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]
|
2023-03-31 20:37:09 -06:00
|
|
|
default = ["x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]
|
2023-03-05 06:35:20 +01:00
|
|
|
debug = ["iced_runtime/debug"]
|
2022-04-30 13:37:57 +02:00
|
|
|
system = ["sysinfo"]
|
2024-06-19 01:53:40 +02:00
|
|
|
program = []
|
2023-03-31 20:37:09 -06:00
|
|
|
x11 = ["winit/x11"]
|
|
|
|
|
wayland = ["winit/wayland"]
|
|
|
|
|
wayland-dlopen = ["winit/wayland-dlopen"]
|
|
|
|
|
wayland-csd-adwaita = ["winit/wayland-csd-adwaita"]
|
2024-11-04 18:08:12 +01:00
|
|
|
unconditional-rendering = []
|
2019-11-03 04:39:11 +01:00
|
|
|
|
2019-10-03 00:01:45 +02:00
|
|
|
[dependencies]
|
2024-05-07 15:50:18 +02:00
|
|
|
iced_futures.workspace = true
|
2023-09-04 12:58:41 +02:00
|
|
|
iced_graphics.workspace = true
|
|
|
|
|
iced_runtime.workspace = true
|
|
|
|
|
|
|
|
|
|
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
|