[package]
edition = "2024"
name = "iced_wry"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embed a WRY webview as a child window inside an Iced application"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/n1ght-hunter/iced_blocks"
[lib]
name = "iced_wry"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "ipc"
path = "examples/ipc.rs"
[dependencies.futures]
version = "0.3"
[dependencies.iced]
version = "0.14"
features = [
"advanced",
"tokio",
]
[dependencies.tracing]
version = "0.1"
[dependencies.wry]
version = "0.55"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
]