[package]
edition = "2021"
name = "iced_live_cast"
version = "0.1.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazing-fast cross-platform monitor casting widgets and sources for iced"
homepage = "https://github.com/veecore/iced_live_cast"
documentation = "https://docs.rs/iced_live_cast"
readme = "README.md"
keywords = [
"iced",
"screen-capture",
"monitor",
"wgpu",
"desktop",
]
categories = [
"gui",
"rendering",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/veecore/iced_live_cast"
[lib]
name = "iced_live_cast"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "manual_push"
path = "examples/manual_push.rs"
[[example]]
name = "side_by_side"
path = "examples/side_by_side.rs"
[[example]]
name = "widget_configs"
path = "examples/widget_configs.rs"
[[bench]]
name = "frame_construction"
path = "benches/frame_construction.rs"
harness = false
[[bench]]
name = "frame_handles"
path = "benches/frame_handles.rs"
harness = false
[[bench]]
name = "frame_processing"
path = "benches/frame_processing.rs"
harness = false
[[bench]]
name = "gpu_upload"
path = "benches/gpu_upload.rs"
harness = false
[[bench]]
name = "handle_updates"
path = "benches/handle_updates.rs"
harness = false
[dependencies.bytemuck]
version = "1.24"
features = ["derive"]
[dependencies.iced]
version = "0.14"
features = [
"advanced",
"image",
"thread-pool",
"wgpu",
]
default-features = false
[dependencies.iced_wgpu]
version = "0.14"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.pollster]
version = "0.4"
[target.'cfg(target_os = "macos")'.dependencies.screencapturekit]
version = "1.5.4"
features = ["macos_15_0"]
[target.'cfg(target_os = "windows")'.dependencies.windows-capture]
version = "2.0.0"