From 0701b608a0de9f9b4120597750d461d49b8ad52a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 21:02:58 +0000 Subject: [PATCH] Update yew requirement from 0.20 to 0.21 Updates the requirements on [yew](https://github.com/yewstack/yew) to permit the latest version. - [Release notes](https://github.com/yewstack/yew/releases) - [Changelog](https://github.com/yewstack/yew/blob/master/CHANGELOG.md) - [Commits](https://github.com/yewstack/yew/compare/yew-v0.20.0...yew-v0.21.0) --- updated-dependencies: - dependency-name: yew dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/benchmarks/Cargo.toml | 2 +- examples/use-media-query/Cargo.toml | 2 +- examples/yew-integration/Cargo.toml | 2 +- examples/yew-proc-macros/Cargo.toml | 2 +- examples/yew-shadow/Cargo.toml | 2 +- examples/yew-ssr/Cargo.toml | 4 ++-- examples/yew-theme-context/Cargo.toml | 2 +- examples/yew-theme-hooks/Cargo.toml | 2 +- packages/stylist/Cargo.toml | 4 ++-- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/benchmarks/Cargo.toml b/examples/benchmarks/Cargo.toml index 9d49998..eab4a47 100644 --- a/examples/benchmarks/Cargo.toml +++ b/examples/benchmarks/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "parser", diff --git a/examples/use-media-query/Cargo.toml b/examples/use-media-query/Cargo.toml index 77143d0..bbe5558 100644 --- a/examples/use-media-query/Cargo.toml +++ b/examples/use-media-query/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "yew_use_media_query", diff --git a/examples/yew-integration/Cargo.toml b/examples/yew-integration/Cargo.toml index 98e2d99..0b6312c 100644 --- a/examples/yew-integration/Cargo.toml +++ b/examples/yew-integration/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } [dev-dependencies] diff --git a/examples/yew-proc-macros/Cargo.toml b/examples/yew-proc-macros/Cargo.toml index 8b24e56..e897062 100644 --- a/examples/yew-proc-macros/Cargo.toml +++ b/examples/yew-proc-macros/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", default-features = false, features = [ "yew_integration", "macros", diff --git a/examples/yew-shadow/Cargo.toml b/examples/yew-shadow/Cargo.toml index b8a3b76..dc0ac2d 100644 --- a/examples/yew-shadow/Cargo.toml +++ b/examples/yew-shadow/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } once_cell = "1.16.0" diff --git a/examples/yew-ssr/Cargo.toml b/examples/yew-ssr/Cargo.toml index cda27ff..a596be3 100644 --- a/examples/yew-ssr/Cargo.toml +++ b/examples/yew-ssr/Cargo.toml @@ -16,7 +16,7 @@ required-features = ["ssr"] [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20" } +yew = { version = "0.21" } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] @@ -30,7 +30,7 @@ gloo-utils = "0.2.0" gloo-timers = { version = "0.3.0", features = ["futures"] } wasm-bindgen-test = "0.3.33" wasm-bindgen = "0.2.83" -yew = { version = "0.20", features = ["csr", "ssr", "hydration"] } +yew = { version = "0.21", features = ["csr", "ssr", "hydration"] } stylist = { path = "../../packages/stylist", features = ["yew_integration", "ssr", "hydration"] } [dev-dependencies.web-sys] diff --git a/examples/yew-theme-context/Cargo.toml b/examples/yew-theme-context/Cargo.toml index 59e4710..0da58d7 100644 --- a/examples/yew-theme-context/Cargo.toml +++ b/examples/yew-theme-context/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = ["yew_integration"] } once_cell = "1.16.0" diff --git a/examples/yew-theme-hooks/Cargo.toml b/examples/yew-theme-hooks/Cargo.toml index 3b3c09f..84179f2 100644 --- a/examples/yew-theme-hooks/Cargo.toml +++ b/examples/yew-theme-hooks/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] log = "0.4.17" console_log = { version = "1.0.0", features = ["color"] } -yew = { version = "0.20", features = ["csr"] } +yew = { version = "0.21", features = ["csr"] } stylist = { path = "../../packages/stylist", features = [ "yew_integration", "yew_use_style", diff --git a/packages/stylist/Cargo.toml b/packages/stylist/Cargo.toml index c39eb6c..5bccbcb 100644 --- a/packages/stylist/Cargo.toml +++ b/packages/stylist/Cargo.toml @@ -25,7 +25,7 @@ stylist-macros = { path = "../stylist-macros", version = "0.12", optional = true once_cell = "1.16.0" wasm-bindgen = "0.2.83" -yew = { version = "0.20", optional = true, default-features = false } +yew = { version = "0.21", optional = true, default-features = false } gloo-events = { version = "0.2.0", optional = true } fastrand = { version = "2.0.0", optional = true } instant = { version = "0.1.12", optional = true, features = ["wasm-bindgen"] } @@ -47,7 +47,7 @@ features = [ log = "0.4.17" env_logger = "0.10.0" trybuild = "1.0.72" -yew = "0.20" +yew = "0.21" rustversion = "1" [features]