From 126aef88e7647c4690055b4c96aee46ecadcf60e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 28 Jul 2023 19:48:39 +0200 Subject: Bump versions :tada: --- widget/Cargo.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 14aae72e..6e66689d 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -1,7 +1,14 @@ [package] name = "iced_widget" -version = "0.1.0" +version = "0.1.1" +authors = ["Héctor Ramón Jiménez "] edition = "2021" +description = "The built-in widgets for Iced" +license = "MIT" +repository = "https://github.com/iced-rs/iced" +documentation = "https://docs.rs/iced_widget" +keywords = ["gui", "ui", "graphics", "interface", "widgets"] +categories = ["gui"] [features] lazy = ["ouroboros"] @@ -24,7 +31,7 @@ version = "0.1" path = "../renderer" [dependencies.iced_style] -version = "0.8" +version = "0.9" path = "../style" [dependencies.ouroboros] -- cgit From 7c772c35fe1cfddb903aa74dfb5f2a58ec0117d3 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 28 Jul 2023 19:59:31 +0200 Subject: Enable all features for `iced_widget` in `docs.rs` --- widget/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 6e66689d..2cba4c5a 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -42,3 +42,7 @@ optional = true version = "0.12" optional = true default-features = false + +[package.metadata.docs.rs] +rustdoc-args = ["--cfg", "docsrs"] +all-features = true -- cgit From 50ce65b3b7ad10a8537b751b3890d9dcfaecf846 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 29 Jul 2023 20:08:07 +0200 Subject: Bump version of `iced_widget` :tada: --- widget/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 2cba4c5a..51319d29 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced_widget" -version = "0.1.1" +version = "0.1.2" authors = ["Héctor Ramón Jiménez "] edition = "2021" description = "The built-in widgets for Iced" -- cgit From 8a589084e1ecc049c78668b85f34791954e247c9 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 2 Aug 2023 22:29:24 +0200 Subject: Bump version of `iced_widget` :tada: --- widget/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 51319d29..128a7c38 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced_widget" -version = "0.1.2" +version = "0.1.3" authors = ["Héctor Ramón Jiménez "] edition = "2021" description = "The built-in widgets for Iced" -- cgit From f468e25d0c67a01ee79d892f6e8ba9be019f06c7 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 4 Sep 2023 12:58:41 +0200 Subject: Use workspace dependencies and package inheritance We are also taking this as a chance to synchronize the versions of all the crates! Because of this, we will skip the `0.11` version. --- widget/Cargo.toml | 57 ++++++++++++++++++++++--------------------------------- 1 file changed, 23 insertions(+), 34 deletions(-) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 128a7c38..6d62c181 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -1,14 +1,18 @@ [package] name = "iced_widget" -version = "0.1.3" -authors = ["Héctor Ramón Jiménez "] -edition = "2021" -description = "The built-in widgets for Iced" -license = "MIT" -repository = "https://github.com/iced-rs/iced" -documentation = "https://docs.rs/iced_widget" -keywords = ["gui", "ui", "graphics", "interface", "widgets"] -categories = ["gui"] +description = "The built-in widgets for iced" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +homepage.workspace = true +categories.workspace = true +keywords.workspace = true + +[package.metadata.docs.rs] +rustdoc-args = ["--cfg", "docsrs"] +all-features = true [features] lazy = ["ouroboros"] @@ -18,31 +22,16 @@ canvas = ["iced_renderer/geometry"] qr_code = ["canvas", "qrcode"] [dependencies] -unicode-segmentation = "1.6" -num-traits = "0.2" -thiserror = "1" - -[dependencies.iced_runtime] -version = "0.1" -path = "../runtime" +iced_renderer.workspace = true +iced_runtime.workspace = true +iced_style.workspace = true -[dependencies.iced_renderer] -version = "0.1" -path = "../renderer" +num-traits.workspace = true +thiserror.workspace = true +unicode-segmentation.workspace = true -[dependencies.iced_style] -version = "0.9" -path = "../style" +ouroboros.workspace = true +ouroboros.optional = true -[dependencies.ouroboros] -version = "0.17" -optional = true - -[dependencies.qrcode] -version = "0.12" -optional = true -default-features = false - -[package.metadata.docs.rs] -rustdoc-args = ["--cfg", "docsrs"] -all-features = true +qrcode.workspace = true +qrcode.optional = true -- cgit From 781ef1f94c4859aeeb852f801b72be095b8ff82b Mon Sep 17 00:00:00 2001 From: Bingus Date: Thu, 14 Sep 2023 13:58:36 -0700 Subject: Added support for custom shader widget for iced_wgpu backend. --- widget/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 6d62c181..032f801c 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -20,6 +20,7 @@ image = ["iced_renderer/image"] svg = ["iced_renderer/svg"] canvas = ["iced_renderer/geometry"] qr_code = ["canvas", "qrcode"] +wgpu = [] [dependencies] iced_renderer.workspace = true -- cgit From 882ae304ac8da899d7d83aed433b7dd3311a0496 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 14 Nov 2023 12:51:08 +0100 Subject: Enable `iced_renderer/wgpu` feature in `iced_widget` --- widget/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widget/Cargo.toml') diff --git a/widget/Cargo.toml b/widget/Cargo.toml index 032f801c..e8e363c4 100644 --- a/widget/Cargo.toml +++ b/widget/Cargo.toml @@ -20,7 +20,7 @@ image = ["iced_renderer/image"] svg = ["iced_renderer/svg"] canvas = ["iced_renderer/geometry"] qr_code = ["canvas", "qrcode"] -wgpu = [] +wgpu = ["iced_renderer/wgpu"] [dependencies] iced_renderer.workspace = true -- cgit