summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-07-22 17:28:55 +0200
committerpml68 <contact@pml68.dev>2025-07-22 17:33:10 +0200
commit706f7cefdb7e1e234a2e0b313735e5bcfbdaf292 (patch)
tree4c7766ffc42a705c8afc6fd7980cee9f98d35715
parentfix: wrong text color being used in designer view (diff)
downloadiced-builder-706f7cefdb7e1e234a2e0b313735e5bcfbdaf292.tar.gz
style: better Cargo.toml formatting [skip ci]
Diffstat (limited to '')
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml44
2 files changed, 31 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 40f852e..bc936d4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2028,7 +2028,7 @@ dependencies = [
[[package]]
name = "iced_custom_highlighter"
version = "0.1.0"
-source = "git+https://github.com/pml68/iced_custom_highlighter?branch=master#c14309113052ec2592b4c79435b12f02e9a79042"
+source = "git+https://github.com/pml68/iced_custom_highlighter#c14309113052ec2592b4c79435b12f02e9a79042"
dependencies = [
"iced_core",
"syntect",
diff --git a/Cargo.toml b/Cargo.toml
index 7f2ab97..25cf5dd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,6 +12,17 @@ rust-version.workspace = true
[dependencies]
iced.workspace = true
+iced.features = [
+ "wgpu",
+ "tiny-skia",
+ "web-colors",
+ "advanced",
+ "tokio",
+ "image",
+ "svg",
+ "lazy",
+]
+
iced_anim.workspace = true
iced_dialog.workspace = true
iced_drop.workspace = true
@@ -60,11 +71,26 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
rust-version = "1.88.0"
[workspace.dependencies]
+iced.version = "0.14.0-dev"
+iced.default-features = false
+
iced_widget = "0.14.0-dev"
-iced_anim = { git = "https://github.com/pml68/iced_anim", features = ["derive"] }
-iced_dialog = { git = "https://github.com/pml68/iced_dialog", branch = "iced/personal" }
-iced_drop = { git = "https://github.com/pml68/iced_drop", branch = "iced/personal" }
-iced_custom_highlighter = { git = "https://github.com/pml68/iced_custom_highlighter", branch = "master" }
+
+iced_material.git = "https://github.com/pml68/iced_material"
+iced_material.branch = "iced/personal"
+iced_material.features = ["animate", "serde", "dialog", "svg"]
+
+iced_anim.git = "https://github.com/pml68/iced_anim"
+iced_anim.features = ["derive"]
+
+iced_dialog.git = "https://github.com/pml68/iced_dialog"
+iced_dialog.branch = "iced/personal"
+
+iced_drop.git = "https://github.com/pml68/iced_drop"
+iced_drop.branch = "iced/personal"
+
+iced_custom_highlighter.git = "https://github.com/pml68/iced_custom_highlighter"
+
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
toml = "0.9.2"
@@ -76,16 +102,6 @@ fxhash = "0.2.1"
thiserror = "2.0.12"
dirs-next = "2.0.0"
-[workspace.dependencies.iced]
-version = "0.14.0-dev"
-default-features = false
-features = ["wgpu", "tiny-skia", "web-colors", "advanced", "tokio", "image", "svg", "lazy"]
-
-[workspace.dependencies.iced_material]
-git = "https://github.com/pml68/iced_material"
-branch = "iced/personal"
-features = ["animate", "serde", "dialog", "svg"]
-
[profile.dev]
opt-level = 1