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: --- runtime/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/Cargo.toml') diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index a65f07f2..7ee4f6b7 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -3,7 +3,7 @@ name = "iced_runtime" version = "0.1.0" authors = ["Héctor Ramón Jiménez "] edition = "2021" -description = "A renderer-agnostic library for native GUIs" +description = "The renderer-agnostic runtime for Iced" license = "MIT" repository = "https://github.com/iced-rs/iced" @@ -14,10 +14,10 @@ debug = [] thiserror = "1" [dependencies.iced_core] -version = "0.9" +version = "0.10" path = "../core" [dependencies.iced_futures] -version = "0.6" +version = "0.7" path = "../futures" features = ["thread-pool"] -- cgit From d6c6d07ddaa170d288afd43bb117e188cdafcfa4 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 28 Jul 2023 19:49:36 +0200 Subject: Fix `iced_runtime` description --- runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/Cargo.toml') diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 7ee4f6b7..fac010b3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -3,7 +3,7 @@ name = "iced_runtime" version = "0.1.0" authors = ["Héctor Ramón Jiménez "] edition = "2021" -description = "The renderer-agnostic runtime for Iced" +description = "A renderer-agnostic runtime for Iced" license = "MIT" repository = "https://github.com/iced-rs/iced" -- cgit From dd6d8875585796252f6b54c950a1c9b143d00904 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 2 Aug 2023 22:44:55 +0200 Subject: Bump version of `iced_runtime` :tada: --- runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/Cargo.toml') diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index fac010b3..9fbe4be7 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced_runtime" -version = "0.1.0" +version = "0.1.1" authors = ["Héctor Ramón Jiménez "] edition = "2021" description = "A renderer-agnostic runtime 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. --- runtime/Cargo.toml | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'runtime/Cargo.toml') diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 9fbe4be7..d19aedd3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,23 +1,21 @@ [package] name = "iced_runtime" -version = "0.1.1" -authors = ["Héctor Ramón Jiménez "] -edition = "2021" -description = "A renderer-agnostic runtime for Iced" -license = "MIT" -repository = "https://github.com/iced-rs/iced" +description = "A renderer-agnostic runtime 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 [features] debug = [] [dependencies] -thiserror = "1" +iced_core.workspace = true +iced_futures.workspace = true +iced_futures.features = ["thread-pool"] -[dependencies.iced_core] -version = "0.10" -path = "../core" - -[dependencies.iced_futures] -version = "0.7" -path = "../futures" -features = ["thread-pool"] +thiserror.workspace = true -- cgit