summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-04-13 03:40:38 +0200
committerpml68 <contact@pml68.dev>2025-04-15 23:52:42 +0200
commit495985f449e46b24e6b734d3aa9e135a779a8b77 (patch)
treef2908b3a1776458e81de63c6d2461b9fc4cec13f /Cargo.toml
parentfeat(material_theme): implement `pick_list::Catalog` (diff)
downloadiced-builder-495985f449e46b24e6b734d3aa9e135a779a8b77.tar.gz
refactor: move `material_theme` and `iced_drop` into separate crates dir
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 4 insertions, 3 deletions
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"