mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-03 19:04:23 +00:00
chore: centralize deps and metadata on workspace level
This commit is contained in:
parent
6353a786af
commit
e16bf8cef1
4 changed files with 54 additions and 34 deletions
23
Cargo.toml
23
Cargo.toml
|
|
@ -2,6 +2,29 @@
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = ["domain", "adapters", "composition"]
|
members = ["domain", "adapters", "composition"]
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
license = "AGPL-3.0-or-later"
|
||||||
|
repository = "https://codeberg.org/waydeer/layer-shika"
|
||||||
|
rust-version = "1.70"
|
||||||
|
keywords = ["layer-shell", "wayland", "slint", "femtovg", "smithay"]
|
||||||
|
categories = ["gui"]
|
||||||
|
|
||||||
|
[workspace.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", "backend-winit-wayland"] }
|
||||||
|
slint-interpreter = { version = "1.14.1", 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.9", features = ["client", "staging"] }
|
||||||
|
|
||||||
|
layer-shika-domain = { version = "0.1.0", path = "domain" }
|
||||||
|
layer-shika-adapters = { version = "0.1.0", path = "adapters" }
|
||||||
|
|
||||||
[workspace.lints.clippy]
|
[workspace.lints.clippy]
|
||||||
all = { level = "deny", priority = -1 }
|
all = { level = "deny", priority = -1 }
|
||||||
pedantic = { level = "deny", priority = -1 }
|
pedantic = { level = "deny", priority = -1 }
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,23 @@
|
||||||
[package]
|
[package]
|
||||||
name = "layer-shika-adapters"
|
name = "layer-shika-adapters"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
description = "Adapters layer for layer-shika"
|
description = "Adapters layer for layer-shika"
|
||||||
license = "AGPL-3.0-or-later"
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glutin = { version = "0.32.3", default-features = false, features = [
|
glutin.workspace = true
|
||||||
"wayland",
|
layer-shika-domain.workspace = true
|
||||||
] }
|
log.workspace = true
|
||||||
layer-shika-domain = { version = "0.1.0", path = "../domain" }
|
raw-window-handle.workspace = true
|
||||||
log = "0.4.28"
|
slint.workspace = true
|
||||||
raw-window-handle = "0.6.2"
|
slint-interpreter.workspace = true
|
||||||
slint = { version = "1.14.1", default-features = false, features = [
|
smithay-client-toolkit.workspace = true
|
||||||
"compat-1-2",
|
thiserror.workspace = true
|
||||||
"renderer-femtovg",
|
wayland-client.workspace = true
|
||||||
"backend-winit-wayland",
|
wayland-protocols.workspace = true
|
||||||
] }
|
|
||||||
slint-interpreter = { version = "1.14.1", 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.9", features = ["client", "staging"] }
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,19 @@
|
||||||
[package]
|
[package]
|
||||||
name = "layer-shika"
|
name = "layer-shika"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
|
keywords.workspace = true
|
||||||
|
categories.workspace = true
|
||||||
description = "A layer shell library crate with Slint UI"
|
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"
|
readme = "../README.md"
|
||||||
keywords = ["layer-shell", "wayland", "slint", "femtovg", "smithay"]
|
|
||||||
categories = ["gui"]
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
layer-shika-adapters = { path = "../adapters" }
|
layer-shika-adapters.workspace = true
|
||||||
layer-shika-domain = { path = "../domain" }
|
layer-shika-domain.workspace = true
|
||||||
thiserror = "2.0"
|
thiserror.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "layer-shika-domain"
|
name = "layer-shika-domain"
|
||||||
version = "0.1.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
description = "Domain layer for layer-shika"
|
description = "Domain layer for layer-shika"
|
||||||
license = "AGPL-3.0-or-later"
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
thiserror = "2.0.17"
|
thiserror.workspace = true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue