mirror of
https://codeberg.org/waydeer/layer-shika.git
synced 2025-11-17 23:14:23 +00:00
refactor: move crates to crates folder
This commit is contained in:
parent
bc7d13be55
commit
f7bf0c9b12
64 changed files with 8 additions and 8 deletions
10
Cargo.toml
10
Cargo.toml
|
|
@ -14,11 +14,11 @@ readme = "README.md"
|
|||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
layer-shika-composition = { version = "0.1.0", path = "src/composition" }
|
||||
layer-shika-composition = { version = "0.1.0", path = "crates/composition" }
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["src/domain", "src/adapters", "src/composition"]
|
||||
members = ["crates/domain", "crates/adapters", "crates/composition"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
|
|
@ -50,9 +50,9 @@ 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 = "src/domain" }
|
||||
layer-shika-adapters = { version = "0.1.0", path = "src/adapters" }
|
||||
layer-shika-composition = { version = "0.1.0", path = "src/composition" }
|
||||
layer-shika-domain = { version = "0.1.0", path = "crates/domain" }
|
||||
layer-shika-adapters = { version = "0.1.0", path = "crates/adapters" }
|
||||
layer-shika-composition = { version = "0.1.0", path = "crates/composition" }
|
||||
|
||||
[workspace.lints.clippy]
|
||||
all = { level = "deny", priority = -1 }
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ rust-version.workspace = true
|
|||
keywords.workspace = true
|
||||
categories.workspace = true
|
||||
description = "Adapters layer for layer-shika"
|
||||
readme = "../README.md"
|
||||
readme = "../../README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
@ -8,7 +8,7 @@ rust-version.workspace = true
|
|||
keywords.workspace = true
|
||||
categories.workspace = true
|
||||
description = "A layer shell library crate with Slint UI"
|
||||
readme = "../README.md"
|
||||
readme = "../../README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
@ -8,7 +8,7 @@ rust-version.workspace = true
|
|||
keywords.workspace = true
|
||||
categories.workspace = true
|
||||
description = "Domain layer for layer-shika"
|
||||
readme = "../README.md"
|
||||
readme = "../../README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Add table
Reference in a new issue