From 8b7f4b19174f45b2cce0d00d4b8594f31d312967 Mon Sep 17 00:00:00 2001 From: drendog Date: Thu, 15 Aug 2024 02:00:55 +0200 Subject: [PATCH] chore: add package details --- Cargo.lock | 1 - Cargo.toml | 28 ++++++++++++++++++++++++++-- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b7a11f4..d1bad0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3332,7 +3332,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b663a82e33af0ad060dc862b72198cf61f840fbe7e1d26739ec0a43688f60312" dependencies = [ "const-field-offset", - "i-slint-backend-qt", "i-slint-backend-selector", "i-slint-core", "i-slint-renderer-femtovg", diff --git a/Cargo.toml b/Cargo.toml index 463742f..acdbd04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,13 +2,37 @@ name = "layer-shika" version = "0.1.0" edition = "2021" +description = "A layer shell library crate with Slint as UI" +license = "MIT OR Apache-2.0" +repository = "https://codeberg.org/drendog/layer-shika" +readme = "README.md" +keywords = [ + "layer-shell", + "wayland", + "slint", + "layer", + "shell", + "gui", + "ui", + "compositor", + "femtovg", + "smithay", + "wlroots", + "sway", +] +categories = ["gui", "compositor"] [dependencies] anyhow = "1.0.86" -glutin = "0.32.0" +glutin = { version = "0.32.0", default-features = false, features = [ + "wayland", +] } log = "0.4.22" raw-window-handle = "0.6.2" -slint = "1.7.1" +slint = { version = "1.7.1", default-features = false, features = [ + "compat-1-2", + "renderer-femtovg", +] } slint-interpreter = "1.7.1" smithay-client-toolkit = "0.19.2" wayland-client = "0.31.5"