chore: add package details
parent
5058d7acdc
commit
8b7f4b1917
|
@ -3332,7 +3332,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b663a82e33af0ad060dc862b72198cf61f840fbe7e1d26739ec0a43688f60312"
|
checksum = "b663a82e33af0ad060dc862b72198cf61f840fbe7e1d26739ec0a43688f60312"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"const-field-offset",
|
"const-field-offset",
|
||||||
"i-slint-backend-qt",
|
|
||||||
"i-slint-backend-selector",
|
"i-slint-backend-selector",
|
||||||
"i-slint-core",
|
"i-slint-core",
|
||||||
"i-slint-renderer-femtovg",
|
"i-slint-renderer-femtovg",
|
||||||
|
|
28
Cargo.toml
28
Cargo.toml
|
@ -2,13 +2,37 @@
|
||||||
name = "layer-shika"
|
name = "layer-shika"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
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]
|
[dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
glutin = "0.32.0"
|
glutin = { version = "0.32.0", default-features = false, features = [
|
||||||
|
"wayland",
|
||||||
|
] }
|
||||||
log = "0.4.22"
|
log = "0.4.22"
|
||||||
raw-window-handle = "0.6.2"
|
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"
|
slint-interpreter = "1.7.1"
|
||||||
smithay-client-toolkit = "0.19.2"
|
smithay-client-toolkit = "0.19.2"
|
||||||
wayland-client = "0.31.5"
|
wayland-client = "0.31.5"
|
||||||
|
|
Loading…
Reference in New Issue