aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 13 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 849c30e..a2c7a29 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,16 +13,23 @@ categories = ["gui"]
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
rust-version = "1.88"
+[features]
+default = []
+markdown = ["iced_widget/markdown"]
+
[dependencies]
-iced_widget = { git = "https://github.com/iced-rs/iced", features = [
- "markdown",
-] }
-unicode-segmentation = "1.0"
+iced_widget.workspace = true
+unicode-segmentation.workspace = true
-[dev-dependencies]
-iced = { git = "https://github.com/iced-rs/iced", features = ["markdown"] }
+[workspace.dependencies]
+iced_widget = { git = "https://github.com/iced-rs/iced" }
+unicode-segmentation = "1.0"
+iced = { git = "https://github.com/iced-rs/iced" }
open = "5.3"
+[workspace]
+members = ["examples/*"]
+
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true