2024-08-13 20:30:13 +00:00
|
|
|
[package]
|
|
|
|
name = "layer-shika"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-08-21 00:06:49 +00:00
|
|
|
description = "A layer shell library crate with Slint UI"
|
2024-08-21 14:50:34 +00:00
|
|
|
license = "AGPL-3.0-or-later"
|
2024-08-22 01:59:38 +00:00
|
|
|
repository = "https://codeberg.org/waydeer/layer-shika"
|
2024-08-15 00:00:55 +00:00
|
|
|
readme = "README.md"
|
2024-08-22 01:58:23 +00:00
|
|
|
keywords = ["layer-shell", "wayland", "slint", "femtovg", "smithay"]
|
2024-08-21 23:56:49 +00:00
|
|
|
categories = ["GUI"]
|
2024-08-13 20:30:13 +00:00
|
|
|
|
2024-08-20 22:46:11 +00:00
|
|
|
[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"
|
2024-08-20 23:02:58 +00:00
|
|
|
unwrap_used = "warn"
|
2024-08-20 22:46:11 +00:00
|
|
|
|
2024-08-13 20:30:13 +00:00
|
|
|
[dependencies]
|
2024-08-15 00:00:55 +00:00
|
|
|
glutin = { version = "0.32.0", default-features = false, features = [
|
|
|
|
"wayland",
|
|
|
|
] }
|
2024-08-13 20:30:13 +00:00
|
|
|
log = "0.4.22"
|
|
|
|
raw-window-handle = "0.6.2"
|
2024-08-21 00:06:49 +00:00
|
|
|
slint = { version = "1.7.2", default-features = false, features = [
|
2024-08-15 00:00:55 +00:00
|
|
|
"compat-1-2",
|
|
|
|
"renderer-femtovg",
|
|
|
|
] }
|
2024-08-21 00:06:49 +00:00
|
|
|
slint-interpreter = "1.7.2"
|
2024-08-13 20:30:13 +00:00
|
|
|
smithay-client-toolkit = "0.19.2"
|
2024-08-21 10:44:53 +00:00
|
|
|
thiserror = "1.0.63"
|
2024-08-13 20:30:13 +00:00
|
|
|
wayland-client = "0.31.5"
|