[package]
edition = "2024"
name = "pinray"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-platform screen capture library for Rust"
readme = false
license = "MIT"
repository = "https://github.com/Itz-Agasta/pinray"
[lib]
name = "pinray"
path = "src/lib.rs"
[[example]]
name = "wayland_smoke"
path = "examples/wayland_smoke.rs"
[dependencies.pinray-core]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[target.'cfg(target_os = "linux")'.dependencies.pinray-platform-linux]
version = "0.1"
[target.'cfg(target_os = "macos")'.dependencies.pinray-platform-macos]
version = "0.1"
[target.'cfg(target_os = "windows")'.dependencies.pinray-platform-windows]
version = "0.1"
[target.'cfg(target_os = "windows")'.dependencies.tracing]
version = "0.1"