From 6122c1b31bd58be24e75dcbeeaaece243987e5d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n?= Date: Tue, 6 Apr 2021 17:31:35 +0700 Subject: [PATCH] Use latest released version of `iced` on crates.io --- Cargo.toml | 10 +++++----- examples/badge/Cargo.toml | 4 ++-- examples/card/Cargo.toml | 4 ++-- examples/color_picker/Cargo.toml | 4 ++-- examples/date_picker/Cargo.toml | 4 ++-- examples/floating_button/Cargo.toml | 4 ++-- examples/modal/Cargo.toml | 4 ++-- examples/tab_bar/Cargo.toml | 4 ++-- examples/tabs/Cargo.toml | 4 ++-- examples/tabs_min/Cargo.toml | 4 ++-- examples/time_picker/Cargo.toml | 4 ++-- examples/web/Cargo.toml | 2 +- 12 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08741875..0e9be027 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,16 +41,16 @@ default = [ ] [dependencies] -iced_style = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } +iced_style = "0.3" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -iced_native = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_graphics = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } +iced_native = "0.4" +iced_graphics = "0.2" chrono = { version = "0.4.19", optional = true } lazy_static = { version = "1.4.0", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -iced_web = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } +iced_web = "0.4" dodrio = "0.2.0" wasm-bindgen = "0.2.69" @@ -70,4 +70,4 @@ members = [ #"examples/tabs_min", "examples/time_picker", "examples/web" -] \ No newline at end of file +] diff --git a/examples/badge/Cargo.toml b/examples/badge/Cargo.toml index 437f2e10..a4aca82a 100644 --- a/examples/badge/Cargo.toml +++ b/examples/badge/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["badge", "colors"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["badge", "colors"] } diff --git a/examples/card/Cargo.toml b/examples/card/Cargo.toml index fda94153..9c5f5412 100644 --- a/examples/card/Cargo.toml +++ b/examples/card/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["card", "colors"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["card", "colors"] } diff --git a/examples/color_picker/Cargo.toml b/examples/color_picker/Cargo.toml index bea7c079..e3399eb0 100644 --- a/examples/color_picker/Cargo.toml +++ b/examples/color_picker/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["color_picker", "colors"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["color_picker", "colors"] } diff --git a/examples/date_picker/Cargo.toml b/examples/date_picker/Cargo.toml index 4e339cb1..7dd91972 100644 --- a/examples/date_picker/Cargo.toml +++ b/examples/date_picker/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["date_picker", "colors"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["date_picker", "colors"] } diff --git a/examples/floating_button/Cargo.toml b/examples/floating_button/Cargo.toml index 19cda563..5805744b 100644 --- a/examples/floating_button/Cargo.toml +++ b/examples/floating_button/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["floating_button", "colors", "icons"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["floating_button", "colors", "icons"] } diff --git a/examples/modal/Cargo.toml b/examples/modal/Cargo.toml index cc7ddf79..6cd36a06 100644 --- a/examples/modal/Cargo.toml +++ b/examples/modal/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe", features = ["debug"] } -iced_aw = { path = "../..", default-features = false, features = ["card", "colors", "modal"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["card", "colors", "modal"] } diff --git a/examples/tab_bar/Cargo.toml b/examples/tab_bar/Cargo.toml index bb9b0d04..3c86e344 100644 --- a/examples/tab_bar/Cargo.toml +++ b/examples/tab_bar/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", features = ["tab_bar"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", features = ["tab_bar"] } diff --git a/examples/tabs/Cargo.toml b/examples/tabs/Cargo.toml index 13acc00d..f4cbcdbe 100644 --- a/examples/tabs/Cargo.toml +++ b/examples/tabs/Cargo.toml @@ -8,5 +8,5 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe", features = ["image"] } -iced_aw = { path = "../..", features = ["tabs"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", features = ["tabs"] } diff --git a/examples/tabs_min/Cargo.toml b/examples/tabs_min/Cargo.toml index c1a5ebc0..25e2815c 100644 --- a/examples/tabs_min/Cargo.toml +++ b/examples/tabs_min/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../.." } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../.." } diff --git a/examples/time_picker/Cargo.toml b/examples/time_picker/Cargo.toml index 56fb04ca..8356fc7a 100644 --- a/examples/time_picker/Cargo.toml +++ b/examples/time_picker/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } -iced_aw = { path = "../..", default-features = false, features = ["colors", "time_picker"] } \ No newline at end of file +iced = "0.3" +iced_aw = { path = "../..", default-features = false, features = ["colors", "time_picker"] } diff --git a/examples/web/Cargo.toml b/examples/web/Cargo.toml index 67b039cd..f4819f6e 100644 --- a/examples/web/Cargo.toml +++ b/examples/web/Cargo.toml @@ -7,6 +7,6 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -iced = { git = "https://github.com/hecrj/iced", rev = "0333a8daff6db989adc6035a4c09df171a86f6fe" } +iced = "0.3" #iced_web = { git = "https://github.com/hecrj/iced", rev = "ea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff" } iced_aw = { path = "../..", default-features = false, features = ["badge", "card", "color_picker", "colors", "date_picker", "floating_button", "modal", "time_picker"] }