diff options
| author | pml68 <contact@pml68.dev> | 2025-04-28 10:57:42 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-28 10:58:49 +0200 |
| commit | 9dfb469d1ba975e59f39f3bb799b019204315784 (patch) | |
| tree | 246271173fad2464170fec0fa5d09504b346c1c7 /Cargo.toml | |
| parent | refactor(material_theme)!: make `Theme` an enum with `Custom` variant (diff) | |
| download | iced-builder-9dfb469d1ba975e59f39f3bb799b019204315784.tar.gz | |
feat: switch to modified `iced_fontello` for custom Theme support
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,7 +20,7 @@ iced_anim.workspace = true iced_custom_highlighter = { git = "https://github.com/pml68/iced_custom_highlighter", branch = "master" } iced_drop = { path = "crates/iced_drop" } iced_dialog.workspace = true -material_theme = { path = "crates/material_theme" } +material_theme = { path = "crates/material_theme", features = ["animate", "serde", "dialog", "image", "svg"] } serde.workspace = true serde_json = "1.0.140" toml.workspace = true @@ -38,16 +38,16 @@ dirs-next = "2.0.0" iced_anim = { version = "0.2.1", features = ["derive"] } iced_dialog = { git = "https://github.com/pml68/iced_dialog", branch = "iced/personal" } serde = { version = "1.0.219", features = ["derive"] } -toml = "0.8.20" +toml = "0.8.21" [workspace.dependencies.iced] git = "https://github.com/pml68/iced" branch = "feat/rehighlight-on-redraw" default-features = false -features = ["wgpu", "tiny-skia", "web-colors", "auto-detect-theme", "image", "svg", "advanced", "tokio", "lazy"] +features = ["wgpu", "tiny-skia", "web-colors", "auto-detect-theme", "advanced", "tokio", "image", "svg", "lazy"] [build-dependencies] -iced_fontello = "0.13.2" +iced_fontello = { path = "crates/iced_fontello" } [target.'cfg(target_os = "macos")'.dependencies] xdg = "2.5.2" |
