27 lines
854 B
TOML
27 lines
854 B
TOML
[package]
|
|
name = "popcorn"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Cute and simple OSD popups on your desktop"
|
|
readme = "README.md"
|
|
repository = "https://git.candifloss.cc/candifloss/popcorn.git"
|
|
authors = ["Candifloss <candifloss.cc>"]
|
|
categories = ["Desktop", "GUI"]
|
|
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" }
|
|
clap = { version = "4.5.53", features = ["derive"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
|
|
[build-dependencies]
|
|
slint-build = "1.14.1"
|