summaryrefslogtreecommitdiff
path: root/iced_builder/Cargo.toml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.me>2024-10-30 03:00:17 +0100
committerpml68 <contact@pml68.me>2024-10-30 03:00:17 +0100
commit87e745b8e60225a789b51d5011fa620051c4cfbe (patch)
tree6bf3cede25ee428939500038439508415d636f45 /iced_builder/Cargo.toml
parentfeat: implement very basic playground (diff)
downloadiced-builder-87e745b8e60225a789b51d5011fa620051c4cfbe.tar.gz
feat: add error dialogs, windows manifest
Diffstat (limited to '')
-rw-r--r--iced_builder/Cargo.toml12
1 files changed, 8 insertions, 4 deletions
diff --git a/iced_builder/Cargo.toml b/iced_builder/Cargo.toml
index d08d485..e62f965 100644
--- a/iced_builder/Cargo.toml
+++ b/iced_builder/Cargo.toml
@@ -12,15 +12,19 @@ keywords = ["gui", "iced"]
iced = { version = "0.13.1", features = [ "image","svg","canvas","qr_code","advanced","tokio","highlighter"] }
iced_aw = { version = "0.11.0", default-features = false, features = ["menu","color_picker"] }
iced_drop = { path = "../iced_drop" }
-serde = { version = "1.0.210", features = ["derive"] }
-serde_json = "1.0.128"
-tokio = { version = "1.40.0", features = ["fs"] }
-rfd = "0.15.0"
+serde = { version = "1.0.214", features = ["derive"] }
+serde_json = "1.0.132"
+tokio = { version = "1.41.0", features = ["fs"] }
+rfd = { version = "0.15.0", default-features = false, features = ["async-std", "gtk3"] }
rust-format = "0.3.4"
unique_id = "0.1.5"
indexmap = { version = "2.6.0", features = ["serde"] }
thiserror = "1.0.65"
+[target.'cfg(windows)'.build-dependencies]
+embed-resource = "2.5.0"
+windows_exe_info = "0.4"
+
[[bin]]
name = "iced-builder"
path = "src/main.rs"