layer-shika/Cargo.toml
2025-10-25 11:43:20 +02:00

41 lines
1.3 KiB
TOML

[package]
name = "layer-shika"
version = "0.1.0"
edition = "2021"
description = "A layer shell library crate with Slint UI"
license = "AGPL-3.0-or-later"
repository = "https://codeberg.org/waydeer/layer-shika"
readme = "README.md"
keywords = ["layer-shell", "wayland", "slint", "femtovg", "smithay"]
categories = ["gui"]
[lints.clippy]
all = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
clone_on_ref_ptr = "warn"
multiple-crate-versions = "allow"
module_name_repetitions = "allow"
unwrap_used = "warn"
[dependencies]
glutin = { version = "0.32.3", default-features = false, features = [
"wayland",
] }
log = "0.4.28"
raw-window-handle = "0.6.2"
# slint = { version = "1.14.1", default-features = false, features = [
# "compat-1-2",
# "renderer-femtovg",
# ] }
slint = { path = "../slint/api/rs/slint", default-features = false, features = [
"compat-1-2",
"renderer-femtovg",
"backend-winit-wayland",
] }
slint-interpreter = { path = "../slint/internal/interpreter", default-features = false, features = ["compat-1-2"] }
smithay-client-toolkit = "0.20.0"
thiserror = "2.0.17"
wayland-client = "0.31.11"
wayland-protocols = { version = "0.32.6", features = ["client", "staging"] }