aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Cargo.toml18
1 files changed, 6 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 18cf8a9..950adcf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,20 +12,14 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
rust-version = "1.85"
[dependencies]
-iced_widget.workspace = true
-iced_core.workspace = true
+iced_widget = { git = "https://github.com/iced-rs/iced", branch = "master" }
+iced_core = { git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced"] }
-[workspace.dependencies.iced_widget]
-git = "https://github.com/iced-rs/iced"
-branch = "master"
+[dev-dependencies]
+iced = { git = "https://github.com/iced-rs/iced", branch = "master" }
-[workspace.dependencies.iced_core]
-git = "https://github.com/iced-rs/iced"
-branch = "master"
-features = ["advanced"]
-
-[workspace]
-members = ["example"]
+[[example]]
+name = "save"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]