summaryrefslogtreecommitdiff
path: root/crates/material_theme/Cargo.toml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-04-17 03:00:52 +0200
committerpml68 <contact@pml68.dev>2025-04-17 03:06:43 +0200
commitce62ff16fbd8e839b5f707f8d9637db083945803 (patch)
tree8d7651817fbf17b24f4baae9cc72c83fd224ca71 /crates/material_theme/Cargo.toml
parentfeat(material_theme): implement `radio::Catalog` (diff)
downloadiced-builder-ce62ff16fbd8e839b5f707f8d9637db083945803.tar.gz
refactor: inline Dark and Light theme definitions, remove toml files
Diffstat (limited to '')
-rw-r--r--crates/material_theme/Cargo.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/crates/material_theme/Cargo.toml b/crates/material_theme/Cargo.toml
index e1da2fb..941bc3e 100644
--- a/crates/material_theme/Cargo.toml
+++ b/crates/material_theme/Cargo.toml
@@ -13,6 +13,8 @@ rust-version = "1.85"
[features]
default = []
+# Provides `serde` support
+serde = ["dep:serde"]
# Provides support for animating with `iced_anim`.
animate = ["dep:iced_anim"]
# Provides support for `iced_dialog`.
@@ -26,9 +28,11 @@ qr_code = ["iced_widget/qr_code"]
[dependencies]
iced_widget = "0.14.0-dev"
-serde.workspace = true
-toml.workspace = true
dark-light = "2.0.0"
+
+serde.workspace = true
+serde.optional = true
+
iced_dialog.workspace = true
iced_dialog.optional = true