popcorn/crates/popcorn-d/Cargo.toml
candifloss 8959cce9f9 Move OsdArgs to shared crate popcorn-proto
- Avoid duplication
- Improve extensibility
2025-12-31 11:39:17 +05:30

27 lines
849 B
TOML

[package]
name = "popcorn-d"
version = "0.1.0"
edition = "2024"
description = "Popcorn OSD daemon (UI renderer)"
readme = "README.md"
repository = "https://git.candifloss.cc/candifloss/popcorn.git"
authors = ["Candifloss <candifloss.cc>"]
categories = ["Desktop", "GUI", "Daemon"]
homepage = "https://git.candifloss.cc/candifloss/popcorn.git"
keywords = ["OSD", "popup", "desktop", "gui", "slint"]
license = "GPL-3+"
build = "build.rs"
[dependencies]
dirs = "6.0.0"
i-slint-backend-winit = "1.14.1"
serde_json = "1.0.145"
slint = { version = "1.14.1", default-features = false, features = ["backend-winit", "renderer-software", "compat-1-2"]}
toml = "0.9.8"
popcorn-conf = { path = "../popcorn-conf" }
serde = { version = "1.0.228", features = ["derive"] }
popcorn-proto = { path = "../popcorn-proto" }
[build-dependencies]
slint-build = "1.14.1"