From 495985f449e46b24e6b734d3aa9e135a779a8b77 Mon Sep 17 00:00:00 2001 From: pml68 Date: Sun, 13 Apr 2025 03:40:38 +0200 Subject: refactor: move `material_theme` and `iced_drop` into separate crates dir --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index e48a39c..1c0984b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,9 @@ debug = ["iced/debug"] iced.workspace = true iced_anim.workspace = true iced_custom_highlighter = { git = "https://github.com/pml68/iced_custom_highlighter", branch = "master" } -iced_drop = { path = "iced_drop" } +iced_drop = { path = "crates/iced_drop" } iced_dialog.workspace = true -material_theme = { path = "material_theme" } +material_theme = { path = "crates/material_theme" } serde.workspace = true serde_json = "1.0.140" toml.workspace = true @@ -74,7 +74,8 @@ name = "iced-builder" path = "src/main.rs" [workspace] -members = ["iced_drop", "material_theme", "theme_test"] +members = ["crates/*", "theme_test"] +default-members = ["crates/material_theme", "."] [lints.rust] missing_debug_implementations = "deny" -- cgit v1.2.3