diff options
| author | pml68 <contact@pml68.dev> | 2025-04-13 03:40:38 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-15 23:52:42 +0200 |
| commit | 495985f449e46b24e6b734d3aa9e135a779a8b77 (patch) | |
| tree | f2908b3a1776458e81de63c6d2461b9fc4cec13f /Cargo.toml | |
| parent | feat(material_theme): implement `pick_list::Catalog` (diff) | |
| download | iced-builder-495985f449e46b24e6b734d3aa9e135a779a8b77.tar.gz | |
refactor: move `material_theme` and `iced_drop` into separate crates dir
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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" |
