diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 25 |
1 files changed, 16 insertions, 9 deletions
@@ -4,7 +4,7 @@ description = "UI builder for iced, built with iced." version = "0.1.0" edition = "2024" authors = ["pml68 <contact@pml68.dev>"] -repository = "https://git.sr.ht/~pml68/iced-builder" +repository = "https://git.pml68.dev/iced-builder" license = "GPL-3.0-or-later" categories = ["gui"] keywords = ["gui", "ui", "graphics", "interface", "widgets"] @@ -18,6 +18,7 @@ iced.features = [ "x11", "wayland", "web-colors", + "advanced", "smol", "image", "svg", @@ -25,7 +26,7 @@ iced.features = [ "linux-theme-detection", ] -iced_material.git = "https://git.sr.ht/~pml68/iced_material" +iced_material.git = "git://git.pml68.dev/iced_material" iced_material.branch = "master" iced_material.features = ["animate", "serde", "dialog", "svg"] @@ -33,19 +34,25 @@ iced_anim.git = "https://github.com/BradySimon/iced_anim" iced_anim.branch = "iced/master" iced_anim.features = ["derive"] -iced_dialog.git = "https://git.sr.ht/~pml68/iced_dialog" +iced_dialog.git = "git://git.pml68.dev/iced_dialog" iced_dialog.branch = "master" -iced_drop.git = "https://github.com/pml68/iced_drop" -iced_drop.branch = "master" +iced_drop.git = "https://github.com/jhannyj/iced_drop" +iced_drop.branch = "0.15.0-dev" +iced_drop.features = ["helpers"] -iced_custom_highlighter.git = "https://git.sr.ht/~pml68/iced_custom_highlighter" +iced_custom_highlighter.git = "git://git.pml68.dev/iced_custom_highlighter" rfd = "0.17" -wgpu = { version = "28.0", default-features = false, features = ["vulkan", "metal", "parking_lot", "std"] } +wgpu = { version = "28.0", default-features = false, features = [ + "vulkan", + "metal", + "parking_lot", + "std", +] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -toml = "0.9" +toml = "1.1" smol = "2" rust-format = { version = "0.3", features = ["pretty_please", "post_process"] } thiserror = "2" @@ -101,5 +108,5 @@ clone_on_copy = "deny" [patch.crates-io] iced_core = { git = "https://github.com/iced-rs/iced", branch = "master" } iced_widget = { git = "https://github.com/iced-rs/iced", branch = "master" } -iced_winit = { git = "https://github.com/iced-rs/iced", branch = "master" } +iced_runtime = { git = "https://github.com/iced-rs/iced", branch = "master" } iced = { git = "https://github.com/iced-rs/iced", branch = "master" } |
