chore: add package details

WIP/draft
drendog 2024-08-15 02:00:55 +02:00
parent 5058d7acdc
commit 8b7f4b1917
Signed by: dwenya
GPG Key ID: 8DD77074645332D0
2 changed files with 26 additions and 3 deletions

1
Cargo.lock generated
View File

@ -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",

View File

@ -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"