[package]
edition = "2021"
rust-version = "1.75"
name = "iced_plus_platform"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Desktop platform integration for iced-plus: tray, notifications, hotkeys, window management"
homepage = "https://docs.neullabs.com/iced-plus"
documentation = "https://docs.neullabs.com/iced-plus"
readme = "README.md"
keywords = [
"iced",
"desktop",
"platform",
"tray",
"notifications",
]
categories = [
"gui",
"os",
]
license = "MIT"
repository = "https://github.com/neul-labs/iced-plus"
[features]
audio = []
default = [
"tray",
"notifications",
]
full = [
"tray",
"notifications",
"hotkeys",
"window",
"audio",
"recording",
"webview",
]
hotkeys = []
notifications = []
recording = []
tray = []
webview = []
window = []
[lib]
name = "iced_plus_platform"
path = "src/lib.rs"
[dependencies.iced]
version = "0.13"
features = [
"advanced",
"image",
"canvas",
"tokio",
]
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"